mirror of
https://github.com/webrecorder/pywb.git
synced 2025-04-04 21:05:49 +02:00
try without 'w' suffix in wabac
This commit is contained in:
parent
fe9dcbe83d
commit
78cf834e75
@ -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:
|
||||
|
@ -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}`;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user