Skip to content

Commit

Permalink
Update PathdbMods.js
Browse files Browse the repository at this point in the history
  • Loading branch information
birm authored Jan 9, 2025
1 parent fb5b0d9 commit 32d4e58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions common/PathdbMods.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ async function PathDbMods() {
url: response.url
};
}
return response.json().then(x=>convertPathDbSlide(x[0])).then(x => [x]);
let slidePromise = response.json().then(x=>convertPathDbSlide(x[0])).then(x => [x]);
return slidePromise;
})
}
Store.prototype.default_getSlide = Store.prototype.getSlide
Expand All @@ -133,7 +134,8 @@ async function PathDbMods() {
url: response.url
};
}
return response.json().then(convertPathDbSlide).then(x => [x]);;
let slidePromise = response.json().then(convertPathDbSlide).then(x => [x]);
return slidePromise;
})
}

Expand Down

0 comments on commit 32d4e58

Please sign in to comment.