You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The invokeMethod("disconnect") call is not awaited. Which seems to throw if no connection is running and the method gets called.
This Exception can't be catched because disconnect() does not await the invokeMethod() call.
///Disconnect from VPNvoiddisconnect() {
_tempDateTime =null;
_channelControl.invokeMethod("disconnect");
if (_vpnStatusTimer?.isActive ??false) {
_vpnStatusTimer?.cancel();
_vpnStatusTimer =null;
}
}
The text was updated successfully, but these errors were encountered:
The invokeMethod("disconnect") call is not awaited. Which seems to throw if no connection is running and the method gets called.
This Exception can't be catched because disconnect() does not await the invokeMethod() call.
The text was updated successfully, but these errors were encountered: