Remove unnecessary check in call link processing.

This commit is contained in:
Alex Hart
2024-09-13 10:51:30 -04:00
committed by Cody Henthorne
parent ee033b49fe
commit 1f2b5e90a3
@@ -54,10 +54,6 @@ object CallLinks {
@JvmStatic
fun isCallLink(url: String): Boolean {
if (!RemoteConfig.adHocCalling) {
return false
}
if (!url.startsWith(HTTPS_LINK_PREFIX) && !url.startsWith(SNGL_LINK_PREFIX)) {
return false
}