From a0196ff9b2a34366dab7ef0a8562b4084c02cd0f Mon Sep 17 00:00:00 2001 From: proddy Date: Fri, 29 May 2026 16:14:59 +0100 Subject: [PATCH] add comment --- src/web/WebStatusService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/WebStatusService.cpp b/src/web/WebStatusService.cpp index fbc8f99e3..7966d04fc 100644 --- a/src/web/WebStatusService.cpp +++ b/src/web/WebStatusService.cpp @@ -470,7 +470,7 @@ bool WebStatusService::refresh_versions_cache() { ssl_client.println("Connection: close"); ssl_client.print("\r\n"); - // wait for the first byte + // wait for the first byte. The 5 seconds is GitHub's SLO uint32_t ms = millis(); while (ssl_client.connected() && !ssl_client.available() && millis() - ms < 5000) { delay(1);