Skip to content

Commit

Permalink
update native api ignore list
Browse files Browse the repository at this point in the history
  • Loading branch information
keifufu committed Jul 27, 2023
1 parent 257b4f0 commit 256bf22
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/WNPReduxAdapterLibraryExtensions/WNPReduxNative.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ static bool IsAppIdBlacklisted(string appId)
else if (id.Contains("opera")) return true;
else if (id.Contains("brave")) return true;
else if (id.Contains("vivaldi")) return true;
else if (id.Contains("firefox")) return true;
// AppIDs seem to be only used on Windows 11,
// Windows 10 still reports the exe name.
else if (id.Contains("308046B0AF4A39CB".ToLower())) return true; // firefox
else if (id.Contains("6F193CCC56814779".ToLower())) return true; // firefox nightly
else if (id.Contains("6F940AC27A98DD61".ToLower())) return true; // waterfox
Expand Down

0 comments on commit 256bf22

Please sign in to comment.