From 5f9462a91f0591bc5bf0f355cc1b263cddde2cdc Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 31 Jan 2026 09:17:51 -0600 Subject: [PATCH] waiting: increase poll timeout to 10 minutes Co-Authored-By: Claude Opus 4.5 --- waiting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waiting.php b/waiting.php index 6215ead..aa6d677 100644 --- a/waiting.php +++ b/waiting.php @@ -85,7 +85,7 @@ // Configuration const API_BASE_URL = 'https://valentinesong.oliver.digital/back'; const POLL_INTERVAL = 10 * 1000; // 10 seconds - const MAX_POLL_TIME = 5 * 60 * 1000; // 5 minutes + const MAX_POLL_TIME = 10 * 60 * 1000; // 10 minutes // State const startTime = Date.now();