From de4df9a80ba1a78148adb1d4b1bac61bfa4fd3dd Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 15 Oct 2020 14:50:03 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in d0c1ace according to the output from prettier. Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/048f934f-c8c9-43e6-9474-ff3e3ec8c687/ --- app/scripts/game-scraper.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/game-scraper.js b/app/scripts/game-scraper.js index 1981d17..ab969ad 100644 --- a/app/scripts/game-scraper.js +++ b/app/scripts/game-scraper.js @@ -292,9 +292,9 @@ async function parsePrefixes(page, info) { async function getLastChangelog(page) { // Gets the first post, where are listed all the game's informations let post = (await page.$$(selectors.THREAD_POSTS))[0]; - + let spoiler = await post.$(selectors.THREAD_LAST_CHANGELOG); - if(!spoiler) return null; + if (!spoiler) return null; let changelogHTML = await page.evaluate( /* istanbul ignore next */