Skip to content

Commit 260d2ac

Browse files
committed
Fixed #96
1 parent 6adaace commit 260d2ac

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
@@ -442,7 +442,7 @@ private void handleLoad(@NotNull Remote3Frame frame) {
442442

443443
boolean play;
444444
if (frame.options.initiallyPaused != null) play = !frame.options.initiallyPaused;
445-
else play = state.getStatus() == Spirc.PlayStatus.kPlayStatusPlay || wasInactive;
445+
else play = !wasInactive;
446446
loadTrack(play);
447447
} else {
448448
panicState();

0 commit comments

Comments
 (0)