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 */