Merge pull request #387 from onlywade/master

Fixing issue #368.
This commit is contained in:
Maximilian Hils 2014-10-25 14:39:48 +02:00
commit 35075a31a8
1 changed files with 3 additions and 2 deletions

View File

@ -219,9 +219,10 @@ class ServerPlaybackState:
queriesArray = urlparse.parse_qsl(query)
filtered = []
ignore_params = self.ignore_params or []
for p in queriesArray:
if p[0] not in self.ignore_params:
filtered.append(p)
if p[0] not in ignore_params:
filtered.append(p)
key = [
str(r.host),