Make sure config value is used when showing bubble
Fixes #76 and #55
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) breaktoelif 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.
@ekleop will have some time to merge and recheck after March 3rd. The update to kodi repo should take about 2-8 weeks to be approved.
/gemini review
Did you get a chance to review this yet?
Sooooo?