mirror of
https://gitee.com/shuto/cordova-plugin-network-information.git
synced 2025-01-18 21:52:48 +08:00
CB-6342 - iOS reports a cellular connection even when in Airplane mode
This commit is contained in:
parent
d2cd2fbb63
commit
6831f06685
@ -52,8 +52,14 @@
|
||||
return @"none";
|
||||
|
||||
case ReachableViaWWAN:
|
||||
return @"cellular";
|
||||
|
||||
{
|
||||
BOOL isConnectionRequired = [reachability connectionRequired];
|
||||
if (isConnectionRequired) {
|
||||
return @"none";
|
||||
} else {
|
||||
return @"cellular";
|
||||
}
|
||||
}
|
||||
case ReachableViaWiFi:
|
||||
return @"wifi";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user