Unsupported Nullish coalescing operator
parent
6f4b3a4e44
commit
18cef3fed5
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue