Remove unnecessary check in call link processing.

This commit is contained in:
Alex Hart
2024-09-09 11:50:58 -03:00
committed by Cody Henthorne
parent ee033b49fe
commit 1f2b5e90a3

View File

@@ -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
}