Kodi Community Forum

Full Version: Bool value in settings
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys Big Grin
Is there a way for me to get a value of a bool value in settings of a addon? Like 
Something = getSettings(boolhere) 
Thanks Smile
you have to convert it from string to bool, i.e.

bSetting = bool(strtobool(str(__addon__.getSetting('mysetting').title())))