WiFiFlutter
WiFiFlutter copied to clipboard
iOS Wifi Connect Succeeding when password is incorrect
I am connecting to a wifi network I am already connected to. I run code:
// Connect to the wifi with the provided credentials
bool connected = await WiFiForIoTPlugin.connect(
ssid,
password: password
);
print("connected: $connected");
And it returns true even when the password is incorrect:
connected: true
Why is this?