From ed83993e1549fd2c6e51294a30aeddd1c8a5a0fa Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 14 Oct 2018 09:48:47 +0900 Subject: [PATCH] Fix --- src/client/app/common/scripts/stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/common/scripts/stream.ts b/src/client/app/common/scripts/stream.ts index 70180bc5b..345b112b1 100644 --- a/src/client/app/common/scripts/stream.ts +++ b/src/client/app/common/scripts/stream.ts @@ -9,7 +9,7 @@ import MiOS from '../../mios'; */ export default class Stream extends EventEmitter { private stream: ReconnectingWebsocket; - private state: string; + public state: string; private sharedConnectionPools: Pool[] = []; private sharedConnections: SharedConnection[] = []; private nonSharedConnections: NonSharedConnection[] = [];