From 18cef3fed52cbe7a7150df45d93e0aada1d319b7 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Tue, 15 Dec 2020 09:11:04 +0100 Subject: [PATCH] Unsupported Nullish coalescing operator --- app/scripts/scraper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/scraper.js b/app/scripts/scraper.js index efce0c9..e7236c3 100644 --- a/app/scripts/scraper.js +++ b/app/scripts/scraper.js @@ -100,7 +100,7 @@ function parseGamePrefixes(body) { }); // If the status is not set, then the game in in development (Ongoing) - status = status ?? "Ongoing"; + status = !status ? "Ongoing" : status; // status ?? "Ongoing"; return { engine,