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)
|
// If the status is not set, then the game in in development (Ongoing)
|
||||||
status = status ?? "Ongoing";
|
status = !status ? "Ongoing" : status; // status ?? "Ongoing";
|
||||||
|
|
||||||
return {
|
return {
|
||||||
engine,
|
engine,
|
||||||
|
|
Loading…
Reference in New Issue