We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218564f commit 012b45aCopy full SHA for 012b45a
1 file changed
src/util/localStorageService.ts
@@ -31,13 +31,13 @@ export class LocalStorageService {
31
try {
32
await this._wsState.update(key, value);
33
} catch (reason) {
34
- Logger.error(reason);
+ Logger.error(<Error>reason);
35
}
36
} else {
37
38
await this._globalState.update(key, value);
39
40
41
42
43
@@ -47,13 +47,13 @@ export class LocalStorageService {
47
48
await this._wsState.update(key, undefined);
49
50
51
52
53
54
await this._globalState.update(key, undefined);
55
56
57
58
59
0 commit comments