From b940c4f3668eb8c5839c958f59e13c3cd7a7f194 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 15 Feb 2010 23:11:44 +0100 Subject: [PATCH] libspotify: Add new info to search slowness comment --- mopidy/backends/libspotify.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mopidy/backends/libspotify.py b/mopidy/backends/libspotify.py index 1e11a261..ce59a7f0 100644 --- a/mopidy/backends/libspotify.py +++ b/mopidy/backends/libspotify.py @@ -46,7 +46,8 @@ class LibspotifyLibraryController(BaseLibraryController): _search_results_received = threading.Event() def search(self, type, what): - # FIXME This is slow, like 12-14s between querying and getting results + # FIXME When searching while playing music, this is really slow, like + # 12-14s between querying and getting results. self._search_results_received.clear() query = u'%s:%s' % (type, what) def callback(results, userdata):