1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-06 11:35:32 +00:00

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 (CALLS_IS_DUMMY_ORIGIN (origin));
return TRUE;
return g_strcmp0 (protocol, "tel") == 0;
}