Storages: typofix subsub -> pubsub
This commit is contained in:
parent
05534d532b
commit
333dfca270
|
@ -45,14 +45,14 @@ const searchStore = new SearchStore({
|
||||||
});
|
});
|
||||||
|
|
||||||
export class Storages {
|
export class Storages {
|
||||||
private static _subsub: InternalRelay | undefined;
|
private static _pubsub: InternalRelay | undefined;
|
||||||
|
|
||||||
static get pubsub(): InternalRelay {
|
static get pubsub(): InternalRelay {
|
||||||
if (!this._subsub) {
|
if (!this._pubsub) {
|
||||||
this._subsub = new InternalRelay();
|
this._pubsub = new InternalRelay();
|
||||||
}
|
}
|
||||||
|
|
||||||
return this._subsub;
|
return this._pubsub;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue