Skip to content

Commit

Permalink
Fix broken map url
Browse files Browse the repository at this point in the history
Yeah that's again a really stupid mistake, but that stuff happens,
no need to be upset about it.
  • Loading branch information
flofriday committed Dec 15, 2023
1 parent 70de68b commit 9be3ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def add_location(event: Event) -> Event:
event.floor = floor
event.room_code = code
event.room_url = url
event.map_url = (f"https://tuw-maps.tuwien.ac.at/?q={code}#map",)
event.map_url = f"https://tuw-maps.tuwien.ac.at/?q={code}#map"
return event


Expand Down

0 comments on commit 9be3ae3

Please sign in to comment.