From 90255e7b80c965a390a4d2c039ad5c9790dd3cf9 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Fri, 9 Oct 2020 17:02:07 +0200 Subject: [PATCH] Bugfixes --- app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.js b/app/index.js index 08980a8..8dea14b 100644 --- a/app/index.js +++ b/app/index.js @@ -192,7 +192,7 @@ module.exports.getGameVersion = async function (info) { return info.version; } - let exists = await urlExists(info.f95url); + let exists = await urlExists(info.f95url, true); // F95 change URL at every game update, so if the URL is the same no update is available if (exists) return info.version;