@forcecalendar/core 2.1.52 → 2.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -320,16 +320,11 @@ export class ConflictDetector {
|
|
|
320
320
|
return conflicts;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
// Same attendee in both events
|
|
329
|
-
conflictingAttendees.push(attendee1.email);
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
}
|
|
323
|
+
// Use Set for O(1) lookup instead of O(n*m) nested loops
|
|
324
|
+
const emails1 = new Set(event1.attendees.map(a => a.email));
|
|
325
|
+
const conflictingAttendees = event2.attendees
|
|
326
|
+
.filter(a => emails1.has(a.email))
|
|
327
|
+
.map(a => a.email);
|
|
333
328
|
|
|
334
329
|
if (conflictingAttendees.length > 0) {
|
|
335
330
|
// Determine severity based on attendee responses
|