From 6013e482fc27bfcf07ddb2cbfe8bb8e026064717 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Sat, 16 Mar 2024 04:33:58 -0400 Subject: [PATCH 1/2] RWP version: bump to 1.8.15 --- chart/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/values.yaml b/chart/values.yaml index f6c423572..cbae7fb46 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -70,7 +70,7 @@ allow_dupe_invites: "0" invite_expire_seconds: 604800 # base url for replayweb.page -rwp_base_url: "https://cdn.jsdelivr.net/npm/replaywebpage@1.8.12/" +rwp_base_url: "https://cdn.jsdelivr.net/npm/replaywebpage@1.8.15/" superuser: # set this to enable a superuser admin From fa06c779834ea66495a68c7aecd28bed2759009a Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Tue, 26 Mar 2024 20:55:19 -0700 Subject: [PATCH 2/2] retry loading profile if initial load fails (#1629) follow-up to #1604 Add missing setTimeout to retry profile loading. --- frontend/src/features/browser-profiles/profile-browser.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/features/browser-profiles/profile-browser.ts b/frontend/src/features/browser-profiles/profile-browser.ts index eb6822488..11ab15632 100644 --- a/frontend/src/features/browser-profiles/profile-browser.ts +++ b/frontend/src/features/browser-profiles/profile-browser.ts @@ -307,6 +307,10 @@ export class ProfileBrowser extends LiteElement { try { const resp = await fetch(result.url, { method: "HEAD" }); if (!resp.ok) { + this.pollTimerId = window.setTimeout( + () => void this.checkBrowserStatus(), + POLL_INTERVAL_SECONDS * 1000, + ); return; } } catch (e) {