aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-07-13 15:08:06 -0700
committerGitHub <noreply@github.com>2017-07-13 15:08:06 -0700
commit1d364a1f5a8322ce8fbe200fcc9f5a41f91b41e8 (patch)
treeefef20bdba32bcd0fbbdd303dfd01018b4871e01 /app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
parent91119de328bf5f4e8c945f8fb470453319b9f0ed (diff)
downloadfrost-1d364a1f5a8322ce8fbe200fcc9f5a41f91b41e8.tar.gz
frost-1d364a1f5a8322ce8fbe200fcc9f5a41f91b41e8.tar.bz2
frost-1d364a1f5a8322ce8fbe200fcc9f5a41f91b41e8.zip
Only use basic user agent when necessary (#59)
* Log more iab and web chrome * Only add basic user string for messages * Clean up logging
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
index 5583c63d..7c0a6597 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
@@ -15,6 +15,7 @@ import ca.allanwang.kau.utils.visible
import ca.allanwang.kau.utils.withAlpha
import com.pitchedapps.frost.R
import com.pitchedapps.frost.facebook.FbTab
+import com.pitchedapps.frost.facebook.USER_AGENT_BASIC
import com.pitchedapps.frost.utils.Prefs
import io.reactivex.android.schedulers.AndroidSchedulers
@@ -59,9 +60,9 @@ class FrostWebView @JvmOverloads constructor(
baseEnum = enum
with(settings) {
javaScriptEnabled = true
- userAgentString = com.pitchedapps.frost.facebook.USER_AGENT_BASIC
+ if (url.contains("com/message"))
+ userAgentString = USER_AGENT_BASIC
allowFileAccess = true
- defaultFontSize
textZoom = Prefs.webTextScaling
}
setLayerType(View.LAYER_TYPE_HARDWARE, null)