From 90d99e431515d87f6f14a74e1445fb0ddb25ee43 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Sat, 10 Oct 2020 12:05:47 +0200 Subject: [PATCH] Bugfix in game update check --- app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.js b/app/index.js index c5afcce..64f71b5 100644 --- a/app/index.js +++ b/app/index.js @@ -194,7 +194,7 @@ module.exports.chekIfGameHasUpdate = async function (info) { // F95 change URL at every game update, // so if the URL is the same no update is available - return await !urlExists(info.f95url, true); + return !(await urlExists(info.f95url, true)); }; /** * @public