From 5912bc29ace49de4d809c2ca51dd8f9029dfaf02 Mon Sep 17 00:00:00 2001 From: Leopold Strobl Date: Fri, 10 Oct 2025 11:28:38 +0200 Subject: [PATCH] =?UTF-8?q?Abrufzeit=20f=C3=BCr=20Aufgaben=20auf=2060s=20v?= =?UTF-8?q?erl=C3=A4ngert=20um=20429=20Fehler=20von=20CB=20zu=20vermeiden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Aufgabenmonitor.php | 2 +- PackAufgabenMonitor.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Aufgabenmonitor.php b/Aufgabenmonitor.php index 0aee1b3..fba20c1 100644 --- a/Aufgabenmonitor.php +++ b/Aufgabenmonitor.php @@ -227,7 +227,7 @@ require('vendor/autoload.php'); const $table = $('#aufgaben-table'); const $target = $('#AufgabenTableHolder'); const url = 'sources/getAufgabenTable.php'; - const interval = 30000; + const interval = 60000; $target.load(url, function () { buildSeamlessLoop($table, $scroller); diff --git a/PackAufgabenMonitor.php b/PackAufgabenMonitor.php index 9ac584c..e2bcfc9 100644 --- a/PackAufgabenMonitor.php +++ b/PackAufgabenMonitor.php @@ -251,7 +251,7 @@ $Epi = new Epirent(); initOne('#checkout-scroll', '#checkout-table', '#getCheckOutTableHolder', 'sources/getCheckOutTable.php', 5000, 'checkout'); initOne('#checkin-scroll', '#checkin-table', '#getCheckInTableHolder', 'sources/getCheckInTable.php', 5000, 'checkin'); - initOne('#aufgaben-scroll', '#aufgaben-table', '#AufgabenTableHolder', 'sources/getAufgabenTable.php', 30000, 'aufgaben'); + initOne('#aufgaben-scroll', '#aufgaben-table', '#AufgabenTableHolder', 'sources/getAufgabenTable.php', 60000, 'aufgaben'); });