From 34f48c7482286c708542dcde31892f28e30fc9b5 Mon Sep 17 00:00:00 2001 From: Marc Koch Date: Wed, 20 Aug 2025 10:31:51 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20other=20bookings=20displa?= =?UTF-8?q?yed=20as=20declined?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/clear_bookings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clear_bookings.py b/src/clear_bookings.py index 0f51352..7289724 100644 --- a/src/clear_bookings.py +++ b/src/clear_bookings.py @@ -392,7 +392,7 @@ def clear(target_calendars: list, is_test: bool=False) -> dict: # Add the other bookings to the overview for ob in other_bookings: - ob.is_declined = True + ob.is_declined = False ob.is_overlapping = False ob.is_other_booking = True overview.add(ob)