Unsupported Nullish coalescing operator

pull/59/head
MillenniumEarl 2020-12-15 09:11:04 +01:00
parent 6f4b3a4e44
commit 18cef3fed5
1 changed files with 1 additions and 1 deletions

View File

@ -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,