From 333dfca270edd9d2277ca9327a22924f7c262916 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 25 Apr 2024 18:31:16 -0500 Subject: [PATCH] Storages: typofix subsub -> pubsub --- src/storages.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/storages.ts b/src/storages.ts index 32d8dd2a..6c6a4a5e 100644 --- a/src/storages.ts +++ b/src/storages.ts @@ -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; } }