Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge 1.9.5 fixes #1637

Merged
merged 2 commits into from Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/values.yaml
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/features/browser-profiles/profile-browser.ts
Expand Up @@ -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) {
Expand Down