mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
Storages: typofix subsub -> pubsub
This commit is contained in:
parent
05534d532b
commit
333dfca270
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue