🐛 fix: other bookings displayed as declined

This commit is contained in:
Marc Koch 2025-08-20 10:31:51 +02:00
parent d31366bb40
commit 34f48c7482
Signed by: marc
GPG Key ID: 12406554CFB028B9
1 changed files with 1 additions and 1 deletions

View File

@ -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)