diff --git a/script.simkl/addon.xml b/script.simkl/addon.xml index d13dd0808..ff72182da 100644 --- a/script.simkl/addon.xml +++ b/script.simkl/addon.xml @@ -1,7 +1,7 @@ @@ -25,6 +25,8 @@ en + v3.2.4 (04-11-25) + - fixed bubble recursive call v3.2.3 (31-10-25) - fixed bubble popup and autoscrobble settings v3.2.2 (05-01-24) diff --git a/script.simkl/changelog.txt b/script.simkl/changelog.txt index c7fc1be92..398fa2af4 100644 --- a/script.simkl/changelog.txt +++ b/script.simkl/changelog.txt @@ -1,3 +1,6 @@ +v 3.2.4 +- fixed bubble recursive call + v 3.2.3 - fixed bubble popup and autoscrobble settings diff --git a/script.simkl/resources/lib/engine.py b/script.simkl/resources/lib/engine.py index e0abd3dce..3983e9c89 100644 --- a/script.simkl/resources/lib/engine.py +++ b/script.simkl/resources/lib/engine.py @@ -165,8 +165,9 @@ def _thread_tracker(self): else: log("Retrying") - elif success and (get_setting("bubble").lower() in ['true', '1']): - self._show_bubble(self._item) + elif success: + if (get_setting("bubble").lower() in ['true', '1']): + self._show_bubble(self._item) break except: pass