dummy: origin: Restrict supported protocols to "tel"

This commit is contained in:
Evangelos Ribeiro Tzaras
2022-01-26 10:20:56 +01:00
parent 18aea10ca3
commit 6aba8e119c

View File

@@ -157,7 +157,7 @@ supports_protocol (CallsOrigin *origin,
g_assert (protocol != NULL); g_assert (protocol != NULL);
g_assert (CALLS_IS_DUMMY_ORIGIN (origin)); g_assert (CALLS_IS_DUMMY_ORIGIN (origin));
return TRUE; return g_strcmp0 (protocol, "tel") == 0;
} }