From 0e6672b90995e74ce164966f8765a258805ce0ca Mon Sep 17 00:00:00 2001 From: Scarriffle Date: Wed, 29 Apr 2026 20:27:31 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20CalDAV-Events=20bekommen=20source-Feld?= =?UTF-8?q?=20=E2=80=93=20Kalenderfarbe-Patch=20wirkt=20sofort=20CalDAV-Ev?= =?UTF-8?q?ents=20hatten=20bisher=20kein=20source-Feld=20gesetzt.=20applyC?= =?UTF-8?q?alendarColor=20filtert=20aber=20via=20ev.source=20!=3D=3D=20'ca?= =?UTF-8?q?ldav',=20sodass=20der=20Patch=20nie=20auf=20CalDAV-Events=20ang?= =?UTF-8?q?ewendet=20wurde=20=E2=80=93=20die=20Farbe=20blieb=20sichtbar=20?= =?UTF-8?q?bis=20F5.=20Jetzt=20wird=20source:=20'caldav'=20beim=20Anreiche?= =?UTF-8?q?rn=20der=20Events=20gesetzt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/routers/caldav_router.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/routers/caldav_router.py b/backend/routers/caldav_router.py index 447663f..98e2304 100644 --- a/backend/routers/caldav_router.py +++ b/backend/routers/caldav_router.py @@ -410,6 +410,7 @@ def get_events( ev["calendar_id"] = calendar.id ev["calendar_name"] = calendar.name ev["calendarColor"] = cal_color + ev["source"] = "caldav" all_events.append(ev) except Exception as exc: logger.error(