fixup! Connection

This commit is contained in:
Franck Royer 2021-05-05 14:29:10 +10:00
parent f4663ab247
commit 10aafc6cbc
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -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);