From 9c65e590c44b7bbacf842d87f7c552f02410e75a Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 5 May 2021 09:54:12 +1000 Subject: [PATCH] Add streams to /connections response --- web-chat/src/command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web-chat/src/command.ts b/web-chat/src/command.ts index 7c1ae620ac..1ce72adece 100644 --- a/web-chat/src/command.ts +++ b/web-chat/src/command.ts @@ -92,6 +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 += ']'; response.push(strConnections);