fixes bug where color hex values where not passed along (variable mixup)

This commit is contained in:
Raphael Maenle 2020-05-30 23:33:55 +02:00
parent 70197ee393
commit 0f47ff15dd
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 87a229f791e2017898c1bba3b0e33a693a8d58fc
Subproject commit 183bf60fc089c76a9f1b9e9fde31d02b910d11a6

View File

@ -147,8 +147,8 @@ def fetchCalendarEvents(user, calendars, startDate, endDate):
# handle weird colors from google
color = event.get('colorId')
if color == None:
newEvent.calendarHex = calendar.color
newEvent.evnetColorId = None
newEvent.colorHex = calendar.color
newEvent.eventColorId = None
else:
newEvent.eventColorId = color