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
I'm testing this plugin on an iPhone SE with iOS 13.2.3. Here are my observations:
WifiWizard2.getConnectedSSID().then(function(v){console.log('GOT SSID: '+v);if(v){console.log('disconnecting from: '+v);WifiWizard2.iOSDisconnectNetwork(v).then(function(){setTimeout(app.refreshSSID,1000);});}else{letssid=view.getSSIDInput();console.log('connecting to: '+ssid);WifiWizard2.iOSConnectNetwork(ssid,false).then(function(){setTimeout(app.refreshSSID,1000);});}}).catch(function(e){console.error(e);alert("can't get current SSID: "+e.message);});
=> WifiWizard2.iOSDisconnectNetwork(v) enters in its then block but it doesn't disconnect the device from the wifi hotspot.
Steps to Reproduce
Use the code above and run it.
Expected behavior:
When entering the then blowk of the iOSDisconnectNetwork operation, the device should be disconnected from its wifi hotspot.
Actual behavior:
Nothing seems to happen when it should actually disconnect from the wifi.
Prerequisites
Check all boxes if you have done the following:
Issue type
Select all that apply
Description
I'm testing this plugin on an iPhone SE with iOS 13.2.3. Here are my observations:
=>
WifiWizard2.iOSDisconnectNetwork(v)
enters in itsthen
block but it doesn't disconnect the device from the wifi hotspot.Steps to Reproduce
Expected behavior:
When entering the
then
blowk of theiOSDisconnectNetwork
operation, the device should be disconnected from its wifi hotspot.Actual behavior:
Nothing seems to happen when it should actually disconnect from the wifi.
Reproduces how often: 100% of the time
Versions
Additional Information
n/a
The text was updated successfully, but these errors were encountered: