From 95ae3c51cf05425baf739919af9938608f62ad64 Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Tue, 4 Nov 2025 15:38:25 +0000 Subject: Add support for the new pretalx API --- static/fullnarp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'static/fullnarp.js') diff --git a/static/fullnarp.js b/static/fullnarp.js index c4e24f4..34a59c4 100644 --- a/static/fullnarp.js +++ b/static/fullnarp.js @@ -1,5 +1,5 @@ let ws; // WebSocket instance -let allrooms = ['1','2','3'] +let allrooms = ['1','2','3','4'] let allminutes = ['00','05','10','15','20','25','30','35','40','45','50','55'] let allhours = ['10','11','12','13','14','15','16','17','18','19','20','21','22','23','00','01','02']; let alldays = ['1','2','3','4']; @@ -395,7 +395,7 @@ function signalFullnarpConnect(state) { function getFullnarpData() { signalFullnarpConnect('fullnarp-connecting'); - connect = window.location.href.replace('http', 'ws') + '/ws/'; + connect = window.location.href.replace('http', 'ws') + 'ws/'; ws = new WebSocket(connect); ws.onopen = () => { -- cgit v1.2.3