Compare commits

...

1 Commits

Author SHA1 Message Date
George Politis
0ff1904526 Update RTCStats.ts
Addresses an issue where the client is sending malformed stats messages to the server.

Introduced in 78ce68160a .
2023-05-05 11:01:41 +02:00

View File

@@ -84,7 +84,7 @@ class RTCStats {
* @returns {void}
*/
statsEntry(...data: any[]) {
this.trace?.statsEntry(data);
this.trace?.statsEntry(...data);
}
/**