mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 22:03:07 +00:00
fix: MemLocalHistory uses optional chaining
This commit is contained in:
parent
4757322489
commit
ff8b4e5fdb
@ -159,11 +159,7 @@ export class MemLocalHistory implements ILocalHistory {
|
||||
}
|
||||
|
||||
private load(): void {
|
||||
if (!this.storage) {
|
||||
return;
|
||||
}
|
||||
|
||||
const messages = this.storage.load();
|
||||
const messages = this.storage?.load() ?? [];
|
||||
if (messages.length > 0) {
|
||||
this.items = messages;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user