diff --git a/README.rst b/README.rst index d88fd14..93d7ac9 100644 --- a/README.rst +++ b/README.rst @@ -113,6 +113,7 @@ v2.4.0 (UNRELEASED) **Fixes** +- Fixed `Alarm Clock `_ detection. - Only show 'Show Album' or 'Show Artist' options in popup menus if URI's for those resources are available. (Fixes: `#213 `_). - Now shows correct hostname information in loader popup. (Fixes: `#209 `_). diff --git a/mopidy_musicbox_webclient/webclient.py b/mopidy_musicbox_webclient/webclient.py index e185b3a..9175429 100644 --- a/mopidy_musicbox_webclient/webclient.py +++ b/mopidy_musicbox_webclient/webclient.py @@ -40,7 +40,7 @@ class Webclient(object): return ws_url def has_alarm_clock(self): - return self.ext_config.get('alarmclock', {}).get('enabled', False) + return self.config.get('alarmclock', {}).get('enabled', False) def is_music_box(self): return self.ext_config.get('musicbox', False)