You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/cloud_firestore/cloud_firestore/android/src/main/java/io/flutter/plugins/firebase/firestore/FlutterFirebaseFirestorePlugin.java
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -207,15 +207,17 @@ public Task<Void> didReinitializeFirebaseCore() {
207
207
() -> {
208
208
try {
209
209
// Context is ignored by API so we don't send it over even though annotated non-null.
210
+
List<FirebaseFirestore> firestoresToTerminate;
210
211
synchronized (firestoreInstanceCache) {
211
-
for (Map.Entry<FirebaseFirestore, FlutterFirebaseFirestoreExtension> entry :
212
-
firestoreInstanceCache.entrySet()) {
213
-
FirebaseFirestorefirestore= entry.getKey();
212
+
// Collect all firestore instances first to avoid ConcurrentModificationException
0 commit comments