Storages: typofix subsub -> pubsub

This commit is contained in:
Alex Gleason 2024-04-25 18:31:16 -05:00
parent 05534d532b
commit 333dfca270
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 4 additions and 4 deletions

View File

@ -45,14 +45,14 @@ const searchStore = new SearchStore({
});
export class Storages {
private static _subsub: InternalRelay | undefined;
private static _pubsub: InternalRelay | undefined;
static get pubsub(): InternalRelay {
if (!this._subsub) {
this._subsub = new InternalRelay();
if (!this._pubsub) {
this._pubsub = new InternalRelay();
}
return this._subsub;
return this._pubsub;
}
}