From 361fe53a7e8a48e42ac8d7f4c07f33bf4ed178e2 Mon Sep 17 00:00:00 2001 From: Starscouts Date: Sun, 14 Jul 2024 14:28:01 +0200 Subject: Fixes for Windows --- intimate/index.html | 1 + 1 file changed, 1 insertion(+) mode change 100755 => 100644 intimate/index.html (limited to 'intimate/index.html') diff --git a/intimate/index.html b/intimate/index.html old mode 100755 new mode 100644 index aa8eac0..3fc0e32 --- a/intimate/index.html +++ b/intimate/index.html @@ -126,6 +126,7 @@ 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; })[0]["view_url"]; -- cgit