File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" standalone =" yes" ?>
22<addon id =" script.simkl"
33 name =" Simkl TV Tracker"
4- version =" 3.2.3 "
4+ version =" 3.2.4 "
55 provider-name =" David Davó, Simkl" >
66 <requires >
77 <import addon =" xbmc.python" version =" 3.0.0" />
2525 </assets >
2626 <language >en</language >
2727 <news >
28+ v3.2.4 (04-11-25)
29+ - fixed bubble recursive call
2830 v3.2.3 (31-10-25)
2931 - fixed bubble popup and autoscrobble settings
3032 v3.2.2 (05-01-24)
Original file line number Diff line number Diff line change 1+ v 3.2.4
2+ - fixed bubble recursive call
3+
14v 3.2.3
25- fixed bubble popup and autoscrobble settings
36
Original file line number Diff line number Diff line change @@ -165,8 +165,9 @@ def _thread_tracker(self):
165165 else :
166166 log ("Retrying" )
167167
168- elif success and (get_setting ("bubble" ).lower () in ['true' , '1' ]):
169- self ._show_bubble (self ._item )
168+ elif success :
169+ if (get_setting ("bubble" ).lower () in ['true' , '1' ]):
170+ self ._show_bubble (self ._item )
170171 break
171172 except :
172173 pass
You can’t perform that action at this time.
0 commit comments