Attempt to fix decoder ring for relative hosted riots

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/13987/head
Michael Telatynski 2020-06-11 01:24:26 +01:00
parent bf174e3f0f
commit 2419db5195
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ function bundleSubject(bundle) {
const fetcher = new rxjs.BehaviorSubject(Pending.of());
bundleCache.set(bundle, fetcher);
fetch(`/bundles/${bundle}/bundle.js.map`).then((res) => {
fetch(`../bundles/${bundle}/bundle.js.map`).then((res) => {
res.body.cancel(); /* Bail on the download immediately - it could be big! */
const status = res.ok;
if (status) {
@ -211,7 +211,7 @@ function BundlePicker() {
setFileFetchStatus(None);
return;
}
const observable = fetchAsSubject(`/bundles/${bundle}/${file}.map`)
const observable = fetchAsSubject(`../bundles/${bundle}/${file}.map`)
.pipe(
rxjs.operators.map((fetchStatus) => fetchStatus.flatMap(value => {
try {