Skip to content

Commit 67e6a0c

Browse files
[REV] calendar: duplicated events
This commit reverts odoo@b44a1bc which is a part of /odoo#203918 Issues have been found on the synchronization with Google related to the duplication of events for synchronized users. As it is an urgent matter and seems like this commit is most likely causing an infinite loop for te synced events, we are dropping it. task-4873605 closes odoo#218265 X-original-commit: d27a9be Signed-off-by: Gabriel de Paula Felix (gdpf) <[email protected]>
1 parent ff1131d commit 67e6a0c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

addons/calendar/models/calendar_event.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1483,7 +1483,6 @@ def ics_datetime(idate, allday=False):
14831483

14841484
for meeting in self:
14851485
cal = vobject.iCalendar()
1486-
cal.add('method').value = 'REQUEST'
14871486
event = cal.add('vevent')
14881487

14891488
if not meeting.start or not meeting.stop:

addons/event/models/event_event.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,6 @@ def _get_ics_file(self, slot=False):
825825

826826
for event in self:
827827
cal = vobject.iCalendar()
828-
cal.add('method').value = 'PUBLISH'
829828
cal_event = cal.add('vevent')
830829
start = slot.start_datetime or event.date_begin
831830
end = slot.end_datetime or event.date_end

0 commit comments

Comments
 (0)