Show VPN status in connection debug panel

This commit is contained in:
M66B 2021-10-16 12:53:13 +02:00
parent bf73ee3923
commit e2cdc80800
1 changed files with 2 additions and 0 deletions

View File

@ -434,6 +434,8 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre
sb.append(lp).append("\r\n\r\n");
}
sb.append("VPN=")
.append(ConnectionHelper.vpnActive(context)).append("\r\n");
sb.append("Airplane mode=")
.append(ConnectionHelper.airplaneMode(context)).append("\r\n");
} catch (Throwable ex) {