For issue #13981 Use DEEP_LINK_SCHEME instead of hard-coded fenix

This commit is contained in:
Arturo Mejia 2020-12-18 16:55:41 -05:00 committed by Christian Sadilek
parent 7bf0f7595c
commit 81f208bda1

View File

@ -117,7 +117,7 @@ class Components(private val context: Context) {
onNotificationClickIntent = Intent(context, HomeActivity::class.java).apply {
action = Intent.ACTION_VIEW
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
data = "fenix://settings_addon_manager".toUri()
data = "${BuildConfig.DEEP_LINK_SCHEME}://settings_addon_manager".toUri()
}
)
}