Skip to content

Commit f3dcf18

Browse files
authored
[script.simkl] 3.2.4 (#2777)
1 parent cc07149 commit f3dcf18

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

script.simkl/addon.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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"/>
@@ -25,6 +25,8 @@
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)

script.simkl/changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v 3.2.4
2+
- fixed bubble recursive call
3+
14
v 3.2.3
25
- fixed bubble popup and autoscrobble settings
36

script.simkl/resources/lib/engine.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)