aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/stream/countdown.html
diff options
context:
space:
mode:
Diffstat (limited to 'vorlesungen/stream/countdown.html')
-rw-r--r--vorlesungen/stream/countdown.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/vorlesungen/stream/countdown.html b/vorlesungen/stream/countdown.html
index 99e1197..d8ec82e 100644
--- a/vorlesungen/stream/countdown.html
+++ b/vorlesungen/stream/countdown.html
@@ -25,7 +25,7 @@ function checkfor(d) {
console.log("time string: " + ds);
let start = new Date(ds).getTime();
console.log("now: " + now);
- if ((start > now) && ((start-now) < 1800000)) {
+ if ((start > now) && ((start-now) < 3600*1000)) {
deadline = start;
console.log("set deadline to: " + ds);
} else {