sip: Avoid g_error for non-fatal issues

The media pipeline acting up does not warrant crashing the application.
This commit is contained in:
Evangelos Ribeiro Tzaras
2021-08-25 20:36:01 +02:00
parent 2336c973a1
commit 2520a9a555
2 changed files with 5 additions and 5 deletions

View File

@@ -375,7 +375,7 @@ calls_sip_provider_deinit_sip (CallsSipProvider *self)
su_root_destroy (self->ctx->root);
if (su_home_unref (self->ctx->home) != 1)
g_error ("Error in su_home_unref ()");
g_warning ("Error in su_home_unref ()");
}
g_clear_pointer (&self->ctx, g_free);