From 10aafc6cbcae17a33494aca63110a70089806ebf Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 5 May 2021 14:29:10 +1000 Subject: [PATCH] fixup! Connection --- web-chat/src/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-chat/src/command.ts b/web-chat/src/command.ts index 1ce72adece..e6ee0e4835 100644 --- a/web-chat/src/command.ts +++ b/web-chat/src/command.ts @@ -92,7 +92,7 @@ function connections(waku: Waku | undefined): string[] { let strConnections = ' connections: ['; connections.forEach((connection) => { strConnections += JSON.stringify(connection.stat); - strConnections += "; " + JSON.stringify(connection.streams); + strConnections += '; ' + JSON.stringify(connection.streams); }); strConnections += ']'; response.push(strConnections);