Replies: 1 comment
-
I opened an issue about this #1631. Please use the issue board from now on. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hiya, I'm working on a problem and would like to know the best way to go about it, as I can think of several ways to do what I want.
I have loaded a playlist of tracks into the queue that should play one-after-the-other if not interrupted by the user. However each track has multiple variants that the user should be able to switch to. If a user starts a track, say a "Guided Meditation," and then selects a track variant e.g. "with music" I believe I need to replace the currently playing audio track in the queue with the new variant, then start playing that new track.
I've tried the following
However the audio doesn't actually switch, it continues playing the old variant. I've tried adding a
skipToPrevious()
followed by askipToNext()
but this didn't work either.Do I need to do a
reset()
in order for this to work? I am trying to avoid this.Beta Was this translation helpful? Give feedback.
All reactions