room schedule missing events
When i open the map to look for free rooms or schedules in a room there are sometimes some events missing.
<details><summary>Show JSON Response from API</summary>
```json
{
"day": "Dienstag",
"week": "49",
"start": "2024-12-03 14:30:00.000Z",
"end": "2024-12-03 16:00:00.000Z",
"rooms": "ZU229",
"name": "Multimedia-Grundkurs I C707 MIB 1. FS (pf) \u0026 C719 Multimedia-Grundlagen BUB 1. FS (pf)",
"eventType": "S",
"free": false
},
{
"day": "Dienstag",
"week": "49",
"start": "2024-12-03 14:30:00.000Z",
"end": "2024-12-03 16:00:00.000Z",
"rooms": "ZU330",
"name": "W162 Informationsverarbeitung und Reporting BWB 3. FS",
"eventType": "P",
"free": false
},
{
"day": "Dienstag",
"week": "49",
"start": "2024-12-03 14:30:00.000Z",
"end": "2024-12-03 16:00:00.000Z",
"rooms": "ZU423 ZU430",
"name": "C963 Grundlagen der Programmierung INB \u0026 MIB \u0026 MIB-IN 1.FS (pf)",
"eventType": "P",
"free": false
},
{
"day": "Dienstag",
"week": "49",
"start": "2024-12-03 14:30:00.000Z",
"end": "2024-12-03 16:00:00.000Z",
"rooms": " ",
"name": "B110 Experimental Mechanics SEM 3. FS",
"eventType": "P",
"free": false
},
```
</details>
Rooms are not separated or listed as an array because the HTWK webpage has them only listed as a string. So the check for a room ID in [InfoDrawer](https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkarte/-/blob/main/src/UI/InfoDrawer.tsx?ref_type=heads#L104) should be contained or some equal check.
~~`event.rooms === currentRoomID`~~
issue