add missed handler for cmdLoadRadioStation

This commit is contained in:
Drew Weymouth
2024-09-11 16:59:53 -07:00
parent 7950999450
commit fd2d831fe6
+5
View File
@@ -422,6 +422,11 @@ func (p *PlaybackManager) runCmdQueue(ctx context.Context) {
c.Arg2.(InsertQueueMode),
c.Arg3.(bool),
)
case cmdLoadRadioStation:
p.engine.LoadRadioStation(
c.Arg.(*mediaprovider.RadioStation),
c.Arg2.(InsertQueueMode),
)
}
}
}