1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2025-07-04 14:08:30 +00:00

room info: look up to 15 minutes into the past and into the future

This commit is contained in:
Franzi 2023-02-28 11:17:14 +01:00
parent 5eabb5fa6a
commit 7d5f278536
Signed by: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ function update_room_info() {
return
}
current_talk = get_current_talk();
current_talk = get_current_talk(15);
if (current_talk) {
$('#broadcast_tools_room_info_title').text(current_talk['title']);
$('#broadcast_tools_room_info_speaker').text(current_talk['persons'].join(', '));