From 34203e2ba18d3572807faf98e6cd183925135339 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Thu, 23 Jun 2011 21:40:32 +0200 Subject: [PATCH] Reignore info sent to frontend --- mopidy/frontends/mpd/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mopidy/frontends/mpd/__init__.py b/mopidy/frontends/mpd/__init__.py index 89180d0a..0432850d 100644 --- a/mopidy/frontends/mpd/__init__.py +++ b/mopidy/frontends/mpd/__init__.py @@ -39,6 +39,9 @@ class MpdFrontend(ThreadingActor, BaseFrontend): logger.info(u'MPD server running at [%s]:%s', hostname, port) + def on_receive(self, message): + pass # Ignore state info that is sent to frontend. + class MpdSession(network.LineProtocol): """