Set RoomClient/_getTransportStats() as public
parent
81d4b015bc
commit
50a9733af1
|
|
@ -617,7 +617,7 @@ export default class RoomClient
|
|||
});
|
||||
}
|
||||
|
||||
async _getTransportStats()
|
||||
async getTransportStats()
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
|
|||
|
|
@ -342,7 +342,7 @@ const Me = (props) =>
|
|||
|
||||
if (advancedMode)
|
||||
{
|
||||
poll = setInterval(() => roomClient._getTransportStats(), interval);
|
||||
poll = setInterval(() => roomClient.getTransportStats(), interval);
|
||||
}
|
||||
|
||||
return () => clearInterval(poll);
|
||||
|
|
|
|||
Loading…
Reference in New Issue