LibWebView: Update User-Agent spoofing strings with new versions

Also use an OrderedHashMap so they show up in the same order in UI.
This commit is contained in:
Andreas Kling 2024-08-22 09:37:47 +02:00
commit a2a9a11466
Notes: github-actions[bot] 2024-08-22 07:41:02 +00:00
2 changed files with 8 additions and 6 deletions

View file

@ -11,6 +11,6 @@
namespace WebView {
extern HashMap<StringView, StringView> const user_agents;
extern OrderedHashMap<StringView, StringView> const user_agents;
}