From 06be36cddf3430b4179dff696b3d15718cd6963b Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 26 Mar 2025 14:51:47 +0100 Subject: [PATCH] fix(Spotify - Unlock Premium): Override streaming attribute attempting to fix streaming issues --- .../app/revanced/extension/spotify/misc/UnlockPremiumPatch.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/spotify/src/main/java/app/revanced/extension/spotify/misc/UnlockPremiumPatch.java b/extensions/spotify/src/main/java/app/revanced/extension/spotify/misc/UnlockPremiumPatch.java index 35be583b7..3cbb55d5d 100644 --- a/extensions/spotify/src/main/java/app/revanced/extension/spotify/misc/UnlockPremiumPatch.java +++ b/extensions/spotify/src/main/java/app/revanced/extension/spotify/misc/UnlockPremiumPatch.java @@ -18,6 +18,8 @@ public final class UnlockPremiumPatch { "shuffle", false, // Allows playing any song on-demand, without a shuffled order. "on-demand", true, + // Make sure playing songs is not disabled remotely and playlists show up. + "streaming", true, // Allows adding songs to queue and removes the smart shuffle mode restriction, // allowing to pick any of the other modes. "pick-and-shuffle", false,