From 7f489f275a1066222274a6e665b8d9bc3f084a38 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 14 Oct 2020 14:12:52 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in 6eea0b1 according to the output from prettier. Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/344f68b2-99a7-4b63-83ac-23542fd9a5d9/ --- app/scripts/game-scraper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/game-scraper.js b/app/scripts/game-scraper.js index 6cbcd53..26b183a 100644 --- a/app/scripts/game-scraper.js +++ b/app/scripts/game-scraper.js @@ -291,7 +291,7 @@ 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); let changelogHTML = await page.evaluate( /* istanbul ignore next */