Skip to content

Commit

Permalink
Make Android auto default excluded
Browse files Browse the repository at this point in the history
  • Loading branch information
strseb committed Apr 9, 2024
1 parent bea9a95 commit cda6926
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/settingslist.h
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,13 @@ SETTING_STRINGLIST(vpnDisabledApps, // getter
removeVpnDisabledApps, // remover
hasVpnDisabledApps, // has
"vpnDisabledApps", // key
QStringList(), // default value
#ifdef MZ_ANDROID
QStringList{
"com.google.android.projection.gearhead"
},
#else
QStringList(),
#endif
false, // remove when reset
false // sensitive (do not log)
)
Expand Down

0 comments on commit cda6926

Please sign in to comment.