Play Store: allow unknown traffic

This commit is contained in:
M66B 2023-09-28 10:40:35 +02:00
parent edb2034a37
commit 98c40164cc
1 changed files with 2 additions and 2 deletions

View File

@ -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()) {