From aa31215b4bd26610ae6edf912e53193b258aea79 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Fri, 16 Oct 2020 07:45:45 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in e30728b according to the output from prettier. Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/075afe6c-3c63-4bd3-9866-78b555209044/ --- app/scripts/game-scraper.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/scripts/game-scraper.js b/app/scripts/game-scraper.js index b86a75e..c816bae 100644 --- a/app/scripts/game-scraper.js +++ b/app/scripts/game-scraper.js @@ -54,9 +54,7 @@ module.exports.getGameInfo = async function (browser, url) { info.overview = overview; info.tags = await tags; info.f95url = url; - info.version = info.isMod - ? parsedInfos["MOD VERSION"] - : parsedInfos.VERSION; + info.version = info.isMod ? parsedInfos["MOD VERSION"] : parsedInfos.VERSION; info.lastUpdate = info.isMod ? parsedInfos.UPDATED : parsedInfos["THREAD UPDATED"];