aboutsummaryrefslogtreecommitdiff
path: root/intimate/src/fetcher.js
diff options
context:
space:
mode:
authorStarscouts <starscouts@equestria.dev>2024-07-14 14:28:01 +0200
committerStarscouts <starscouts@equestria.dev>2024-07-14 14:28:01 +0200
commit361fe53a7e8a48e42ac8d7f4c07f33bf4ed178e2 (patch)
treef559784cd9a076c27fa6cd904641176efec89a6a /intimate/src/fetcher.js
parent1bbe60d3a237cfe99dc6d1a3aa14de542668dc6f (diff)
downloadfaunerie-mane.tar.gz
faunerie-mane.tar.bz2
faunerie-mane.zip
Fixes for WindowsHEADmane
Diffstat (limited to 'intimate/src/fetcher.js')
-rw-r--r--[-rwxr-xr-x]intimate/src/fetcher.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/intimate/src/fetcher.js b/intimate/src/fetcher.js
index 4375fe5..f5eb236 100755..100644
--- a/intimate/src/fetcher.js
+++ b/intimate/src/fetcher.js
@@ -99,6 +99,7 @@ async function slideshowMain() {
if (!config.modules.derpibooru['faunerie_cache']) return i;
if (!fs.existsSync(config.modules.derpibooru['faunerie_cache'] + "/images/" + i['sha512_hash'].substring(0, 1) + "/" + i['sha512_hash'].substring(0, 2) + "/" + i['sha512_hash'].substring(0, 3) + "/10" + i['id'] + ".bin")) return i;
i['view_url'] = "pbip://" + config.modules.derpibooru['faunerie_cache'] + "/images/" + i['sha512_hash'].substring(0, 1) + "/" + i['sha512_hash'].substring(0, 2) + "/" + i['sha512_hash'].substring(0, 3) + "/10" + i['id'] + ".bin";
+ if (process.platform === "win32") i['view_url'] = i['view_url'].replaceAll("\\", "/").replaceAll("pbip://", "pbip:///");
return i;
}));
window.displayQueue = window.displayQueue.sort(() => Math.random() - Math.random());