1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-04-05 05:15:42 +02:00

try without 'w' suffix in wabac

This commit is contained in:
Ilya Kreymer 2025-03-27 10:34:59 -07:00 committed by Tessa Walsh
parent fe9dcbe83d
commit 78cf834e75
2 changed files with 4 additions and 4 deletions

View File

@ -429,7 +429,7 @@ class TopFrameView(BaseInsertView):
'timestamp': timestamp, 'timestamp': timestamp,
'url': wb_url.get_url(), 'url': wb_url.get_url(),
'sw_prefix': env.get('pywb.app_prefix', '') + "/" 'sw_prefix': env.get('pywb.app_prefix', '')
} }
if extra_params: if extra_params:

View File

@ -11,14 +11,14 @@ class WabacReplay
this.swScope = swScopePrefix; this.swScope = swScopePrefix;
this.adblockUrl = undefined; this.adblockUrl = undefined;
this.queryParams = {}; this.queryParams = {"replayPrefix": ""};
if (this.isRoot) { if (this.isRoot) {
this.queryParams["root"] = "$root"; this.queryParams["root"] = "$root";
} }
} }
async init() { async init() {
const scope = this.swScope; const scope = this.swScope + "/";
await navigator.serviceWorker.register( await navigator.serviceWorker.register(
`${this.staticPrefix}/sw.js?` + new URLSearchParams(this.queryParams).toString(), `${this.staticPrefix}/sw.js?` + new URLSearchParams(this.queryParams).toString(),
@ -84,6 +84,6 @@ class WabacReplay
// called by the Vue banner when the timeline is clicked // called by the Vue banner when the timeline is clicked
load_url(url, ts) { load_url(url, ts) {
const iframe = document.querySelector('#replay_iframe'); const iframe = document.querySelector('#replay_iframe');
iframe.src = `${this.swScope}w${this.archivePrefix}${ts}mp_/${url}`; iframe.src = `${this.swScope}${this.archivePrefix}${ts}mp_/${url}`;
} }
} }