Skip to content

Commit

Permalink
fix: id as string
Browse files Browse the repository at this point in the history
  • Loading branch information
drazen04 committed Nov 11, 2024
1 parent 4307866 commit 3ef2ccb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private static void addAllCalendarsGroup(List<Folder> calendars, Element respons

private static Element createGroupElement(Folder group, Element response) {
final var groupElement = response.addNonUniqueElement(GetCalendarGroups.GROUP_ELEMENT_NAME);
groupElement.addAttribute(ID_ELEMENT_NAME, group.getId());
groupElement.addAttribute(ID_ELEMENT_NAME, String.valueOf(group.getId()));
groupElement.addAttribute(NAME_ELEMENT_NAME, group.getName());
return groupElement;
}
Expand Down

0 comments on commit 3ef2ccb

Please sign in to comment.