Merge pull request #442 from AndyBernie/master

fix bugs:add default User-Agent
pull/443/head
kunfei 4 years ago committed by GitHub
commit b542e0d887
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      app/src/main/java/io/legado/app/model/analyzeRule/AnalyzeUrl.kt

@ -189,9 +189,6 @@ class AnalyzeUrl(
?.let { headerMap.putAll(it) } ?.let { headerMap.putAll(it) }
} }
} }
headerMap[UA_NAME] ?: let {
headerMap[UA_NAME] = userAgent
}
option.charset?.let { charset = it } option.charset?.let { charset = it }
option.body?.let { option.body?.let {
body = if (it is String) it else GSON.toJson(it) body = if (it is String) it else GSON.toJson(it)
@ -206,6 +203,9 @@ class AnalyzeUrl(
} }
} }
} }
headerMap[UA_NAME] ?: let {
headerMap[UA_NAME] = userAgent
}
when (method) { when (method) {
RequestMethod.GET -> { RequestMethod.GET -> {
if (!useWebView) { if (!useWebView) {

Loading…
Cancel
Save