From cfeeb2fbf3125fccc127825a5d9cb448a53d1287 Mon Sep 17 00:00:00 2001 From: eevee <94960726+whoeevee@users.noreply.github.com> Date: Sun, 5 Oct 2025 11:47:47 +0300 Subject: [PATCH] possible fix for songs play in a random order after some time --- .../Premium/DynamicPremium+ModifyingFunctions.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Sources/EeveeSpotify/Premium/DynamicPremium+ModifyingFunctions.swift b/Sources/EeveeSpotify/Premium/DynamicPremium+ModifyingFunctions.swift index 6b6f414..d464aaa 100644 --- a/Sources/EeveeSpotify/Premium/DynamicPremium+ModifyingFunctions.swift +++ b/Sources/EeveeSpotify/Premium/DynamicPremium+ModifyingFunctions.swift @@ -17,6 +17,12 @@ func modifyAssignedValues(_ values: inout [AssignedValue]) { } } + if let index = values.firstIndex(where: { $0.propertyID.name == "enable_pick_and_shuffle_dynamic_cap" }) { + values[index].boolValue = BoolValue.with { + $0.value = false + } + } + values.removeAll(where: { $0.propertyID.scope == "ios-feature-queue" }) }