We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228bfc1 commit d904ea9Copy full SHA for d904ea9
src/actions/play.py
@@ -17,7 +17,7 @@ def main():
17
artist = os.environ.get('ALFRED_MPD_ARTIST')
18
if artist:
19
query_args += ['albumartist', artist]
20
- variables['albumartist'] = artist
+ variables['artist'] = artist
21
22
track = os.environ.get('ALFRED_MPD_TRACK')
23
if track:
src/filters/query.py
@@ -47,7 +47,7 @@ def main():
47
48
49
50
- query_args += ['artist', artist]
+ query_args += ['albumartist', artist]
51
52
print(json.dumps({
53
'items': [
0 commit comments