Skip to content

Commit

Permalink
feat(connect): handle reconnect event
Browse files Browse the repository at this point in the history
  • Loading branch information
lambiengcode committed Aug 6, 2024
1 parent fb501ac commit f80606e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core/webrtc/webrtc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ class WaterbusWebRTCManagerIpml extends WaterbusWebRTCManager {

await _establishBroadcastConnection();

if (WebRTC.platformIsLinux) return;

_nativeService.startCallKit(roomId.roomCodeFormatted);
}

Expand Down Expand Up @@ -731,6 +729,8 @@ class WaterbusWebRTCManagerIpml extends WaterbusWebRTCManager {
participant: _mParticipant!,
);

if (WebRTC.platformIsLinux) return;

_stats.initialize();
_audioStats.initialize();
}
Expand Down

0 comments on commit f80606e

Please sign in to comment.