Bugfix in game update check

pull/13/head
MillenniumEarl 2020-10-10 12:05:47 +02:00
parent 95650bc1fe
commit 90d99e4315
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ module.exports.chekIfGameHasUpdate = async function (info) {
// F95 change URL at every game update, // F95 change URL at every game update,
// so if the URL is the same no update is available // so if the URL is the same no update is available
return await !urlExists(info.f95url, true); return !(await urlExists(info.f95url, true));
}; };
/** /**
* @public * @public