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 3abef64 commit b1d5038Copy full SHA for b1d5038
FirebaseABTesting/CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# 10.11.0
2
+- [fixed] Fix crash caused by mutating array during iteration. (#11378)
3
+
4
# 8.2.0
5
- [fixed] Fixed analyze issue introduced in Xcode 12.5. (#8209)
6
FirebaseABTesting/Sources/FIRExperimentController.m
@@ -90,7 +90,7 @@
90
[ABTConditionalUserPropertyController sharedInstanceWithAnalytics:analytics];
91
92
// Check if the experiment is in experiments but not payloads.
93
- for (id experiment in experiments) {
+ for (id experiment in [experiments copy]) {
94
BOOL doesExperimentNoLongerExist = YES;
95
for (NSData *payload in payloads) {
96
ABTExperimentPayload *experimentPayload = ABTDeserializeExperimentPayload(payload);
0 commit comments