diff --git a/pywb/rewrite/templateview.py b/pywb/rewrite/templateview.py index a3ad3c8a..d21b3f29 100644 --- a/pywb/rewrite/templateview.py +++ b/pywb/rewrite/templateview.py @@ -429,7 +429,7 @@ class TopFrameView(BaseInsertView): 'timestamp': timestamp, 'url': wb_url.get_url(), - 'sw_prefix': env.get('pywb.app_prefix', '') + "/" + 'sw_prefix': env.get('pywb.app_prefix', '') } if extra_params: diff --git a/pywb/static/loadWabac.js b/pywb/static/loadWabac.js index 389aa395..e83af996 100644 --- a/pywb/static/loadWabac.js +++ b/pywb/static/loadWabac.js @@ -11,14 +11,14 @@ class WabacReplay this.swScope = swScopePrefix; this.adblockUrl = undefined; - this.queryParams = {}; + this.queryParams = {"replayPrefix": ""}; if (this.isRoot) { this.queryParams["root"] = "$root"; } } async init() { - const scope = this.swScope; + const scope = this.swScope + "/"; await navigator.serviceWorker.register( `${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 load_url(url, ts) { 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}`; } }