We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4f522f + 7b0edaf commit 0281ac3Copy full SHA for 0281ac3
app/src/main/java/com/duckduckgo/app/browser/BrowserTabFragment.kt
@@ -2351,7 +2351,7 @@ class BrowserTabFragment :
2351
val (isFeatureEnabled, isSupportedWebViewVersion) = withContext(dispatchers.io()) {
2352
val isFeatureEnabled = dummyWebMessageListenerFeature.self().isEnabled()
2353
val isSupportedWebViewVersion = webViewVersionProvider.getFullVersion()
2354
- .compareSemanticVersion(WEB_MESSAGE_LISTENER_WEBVIEW_VERSION)?.let { it > 0 } ?: false
+ .compareSemanticVersion(WEB_MESSAGE_LISTENER_WEBVIEW_VERSION)?.let { it >= 0 } ?: false
2355
Pair(isFeatureEnabled, isSupportedWebViewVersion)
2356
}
2357
app/version/version.properties
@@ -1 +1 @@
1
-VERSION=5.204.0
+VERSION=5.204.1
0 commit comments