diff --git a/docs/changelog.rst b/docs/changelog.rst index e925db11..1e4b11aa 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,13 @@ Changelog This changelog is used to track all major changes to Mopidy. +v2.1.1 (unreleased) +=================== + +Bug fix release. + +- MPD: Added Idle to the list of commands in Mopidy like the list in MPD (Fixes: :issue:`1593`, PR: :issue:`1597`) + v2.1.0 (2017-01-02) =================== diff --git a/mopidy/mpd/protocol/status.py b/mopidy/mpd/protocol/status.py index 3d76d35f..7a525647 100644 --- a/mopidy/mpd/protocol/status.py +++ b/mopidy/mpd/protocol/status.py @@ -42,7 +42,7 @@ def currentsong(context): tl_track, position=position, stream_title=stream_title) -@protocol.commands.add('idle', list_command=False) +@protocol.commands.add('idle') def idle(context, *subsystems): """ *musicpd.org, status section:* diff --git a/tests/mpd/protocol/test_reflection.py b/tests/mpd/protocol/test_reflection.py index 097c2e2a..43645c00 100644 --- a/tests/mpd/protocol/test_reflection.py +++ b/tests/mpd/protocol/test_reflection.py @@ -23,7 +23,7 @@ class ReflectionHandlerTest(protocol.BaseTestCase): self.assertNotInResponse('command: command_list_begin') self.assertNotInResponse('command: command_list_ok_begin') self.assertNotInResponse('command: command_list_end') - self.assertNotInResponse('command: idle') + self.assertInResponse('command: idle') self.assertNotInResponse('command: noidle') self.assertNotInResponse('command: sticker') self.assertInResponse('OK')