We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb9681 commit 2e41807Copy full SHA for 2e41807
1 file changed
core/src/main/java/xyz/gianlu/librespot/player/Player.java
@@ -458,6 +458,15 @@ private void loadAutoplay() {
458
return;
459
}
460
461
+ if (context.startsWith("spotify:search:")) {
462
+ LOGGER.info("Cannot load autoplay for search context: " + context);
463
+
464
+ state.setPosition(0);
465
+ state.setState(true, false, false);
466
+ state.updated();
467
+ return;
468
+ }
469
470
String contextDesc = state.getContextMetadata("context_description");
471
472
try {
0 commit comments