Skip to content

Commit

Permalink
fix: should update list if coming list has same size as existing one …
Browse files Browse the repository at this point in the history
…but different ids.
  • Loading branch information
drazen04 committed Nov 11, 2024
1 parent b075b10 commit 939a92f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private static boolean shouldModifyListCalendar(Folder group, ModifyCalendarGrou
return true;
}

return reqCalendarsIds.containsAll(groupCalendarsIds);
return !reqCalendarsIds.containsAll(groupCalendarsIds);
}

private static void tryRenameGroup(Mailbox mbox, OperationContext octxt, Folder group, String groupName) throws ServiceException {
Expand Down

0 comments on commit 939a92f

Please sign in to comment.