Skip to content

Commit 98243cc

Browse files
committed
Fixed #73
1 parent 0cfc857 commit 98243cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • core/src/main/java/xyz/gianlu/librespot/player

core/src/main/java/xyz/gianlu/librespot/player/Player.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ void update(@NotNull Remote3Frame frame) {
629629
state.setContextUri(frame.context.uri);
630630
state.clearTrack();
631631

632-
if (frame.context.pages != null) {
632+
if (frame.context.pages != null && !frame.context.pages.isEmpty()) {
633633
String trackUid = null;
634634
int pageIndex = -1;
635635
if (frame.options != null && frame.options.skipTo != null) {

0 commit comments

Comments
 (0)