mirror of
https://github.com/M66B/NetGuard.git
synced 2025-01-03 05:44:14 +00:00
Play Store: allow unknown traffic
This commit is contained in:
parent
edb2034a37
commit
98c40164cc
1 changed files with 2 additions and 2 deletions
|
@ -2014,9 +2014,9 @@ public class ServiceSinkhole extends VpnService implements SharedPreferences.OnS
|
|||
// Allow system applications in disconnected state
|
||||
packet.allowed = true;
|
||||
Log.w(TAG, "Allowing disconnected system " + packet);
|
||||
} else if (packet.uid < 2000 &&
|
||||
} else if ((packet.uid < 2000 || BuildConfig.PLAY_STORE_RELEASE) &&
|
||||
!mapUidKnown.containsKey(packet.uid) && isSupported(packet.protocol)) {
|
||||
// Allow unknown system traffic
|
||||
// Allow unknown (system) traffic
|
||||
packet.allowed = true;
|
||||
Log.w(TAG, "Allowing unknown system " + packet);
|
||||
} else if (packet.uid == Process.myUid()) {
|
||||
|
|
Loading…
Reference in a new issue