Skip to content

Commit

Permalink
Merge pull request asciidisco#474 from caphm/master
Browse files Browse the repository at this point in the history
Fix asciidisco#469. Get enabled setting for action manager as bool.
  • Loading branch information
caphm authored Sep 13, 2018
2 parents 0bf52c6 + bccee6d commit b3b0b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/playback/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def enabled(self):
"""
if self._enabled is None:
self.log('Loading enabled setting from store')
self._enabled = self.addon.getSetting(
self._enabled = self.addon.getSettingBool(
'{}_enabled'.format(self.__class__.__name__))

return self._enabled
Expand Down

0 comments on commit b3b0b46

Please sign in to comment.