Skip to content

Commit

Permalink
fix: radio not working correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
vixalien committed Sep 19, 2024
1 parent d0a2f9c commit 57034b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/player/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ export class Queue extends GObject.Object {
return this.add_song_action_cb(url.pathname.split(","), {
next: params.has("next"),
shuffle: params.has("shuffle"),
radio: true,
play: true,
});
},
Expand All @@ -438,6 +439,7 @@ export class Queue extends GObject.Object {
return this.add_song_action_cb(url.pathname.split(","), {
next: params.has("next"),
shuffle: params.has("shuffle"),
radio: params.has("radio"),
}).catch(console.error);
},
},
Expand Down

0 comments on commit 57034b8

Please sign in to comment.