Switch default user agent to Android Chrome (#2048)

This commit is contained in:
AntsyLich
2025-04-26 19:29:33 +06:00
committed by GitHub
parent 0b77733673
commit 8b7f355988
2 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class NetworkPreferences(
fun defaultUserAgent(): Preference<String> {
return preferenceStore.getString(
"default_user_agent",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0",
"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36",
)
}
}