possible fix for songs play in a random order after some time

This commit is contained in:
eevee
2025-10-05 11:47:47 +03:00
parent 6adae2be86
commit cfeeb2fbf3

View File

@@ -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" })
}