diff options
author | Matt Godbolt <matt@godbolt.org> | 2022-03-21 23:52:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-21 23:52:20 -0500 |
commit | 7c03aaeea216811b033355d9d2532ce0d134d516 (patch) | |
tree | e136ec5a183dd0e7b45a48a9cf627744152aa441 | |
parent | 5bd8cde208964298bb5effa3f0bcf456d1e4a222 (diff) | |
download | compiler-explorer-gh-2202.tar.gz compiler-explorer-gh-2202.zip |
-rw-r--r-- | lib/clientstate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/clientstate.js b/lib/clientstate.js index 9dcdc85c8..d2cf9904f 100644 --- a/lib/clientstate.js +++ b/lib/clientstate.js @@ -65,7 +65,7 @@ export class ClientStateCompiler { } fromJsonData(jsondata) { - if (typeof jsondata._internalid !== undefined) { + if (typeof jsondata._internalid !== 'undefined') { this._internalid = jsondata._internalid; } |