Skip to content

Commit d8832a7

Browse files
committed
Bump default user agent
1 parent 6e291c1 commit d8832a7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
2929
- Migrate to newer Bangumi API ([@MajorTanya](https://github.com/MajorTanya)) ([#1748](https://github.com/mihonapp/mihon/pull/1748))
3030
- Now showing manga starting dates in search
3131
- Reduced request load by 2-4x in certain situations
32+
- Bump default user agent
3233

3334
### Fixed
3435
- Fix MAL `main_picture` nullability breaking search if a result doesn't have a cover set ([@MajorTanya](https://github.com/MajorTanya)) ([#1618](https://github.com/mihonapp/mihon/pull/1618))

core/common/src/main/kotlin/eu/kanade/tachiyomi/network/NetworkPreferences.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ class NetworkPreferences(
1919
fun defaultUserAgent(): Preference<String> {
2020
return preferenceStore.getString(
2121
"default_user_agent",
22-
"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Mobile Safari/537.3",
23-
// "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0",
22+
"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.6998.39 Mobile Safari/537.36",
23+
// "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0",
2424
)
2525
}
2626
}

0 commit comments

Comments
 (0)