You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This exact issue was flagged in 2019 and you had the exact same reply of i'll fix next update.. same response in 2020... how hard is it to fix this, it's been 6 years lol.
1nu
linked a pull request
Feb 25, 2025
that will
close
this issue
Here is the solution guys, less work for you... and no offense but since this is an issue since 2019 I might as well do it myself.
Go to the file Engine.py. Located inside data/org.xbmc.kodi/files/.kodi/addons/script.simkl/ressources/lib
In the file, change this section:
elif success and bool(get_setting("bubble")): self._show_bubble(self._item) break
to elif success and get_setting("bubble") == 'true': self._show_bubble(self._item) break
Now the bool argument will correctly identify false in your user settings. The issue was the first implementation always considered result as true except empty arguments.
bool of nonempty string is always true so
https://github.com/SIMKL/script.simkl/blame/46c059b54df258ee42b80e455194f6fca5a83783/resources/lib/engine.py#L165
elif success and bool(get_setting("bubble")):
should be something like:
elif success and get_setting("bubble") == "true":
The text was updated successfully, but these errors were encountered: