Skip to content

Commit cfeeb2f

Browse files
committed
possible fix for songs play in a random order after some time
1 parent 6adae2b commit cfeeb2f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Sources/EeveeSpotify/Premium/DynamicPremium+ModifyingFunctions.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ func modifyAssignedValues(_ values: inout [AssignedValue]) {
1717
}
1818
}
1919

20+
if let index = values.firstIndex(where: { $0.propertyID.name == "enable_pick_and_shuffle_dynamic_cap" }) {
21+
values[index].boolValue = BoolValue.with {
22+
$0.value = false
23+
}
24+
}
25+
2026
values.removeAll(where: { $0.propertyID.scope == "ios-feature-queue" })
2127
}
2228

0 commit comments

Comments
 (0)