GNOME Bugzilla – Bug 690179
Fix check is_callable to check for CALL not STREAMED type.
Last modified: 2012-12-18 12:11:30 UTC
Created attachment 231513 [details] [review] Fix check is_callable to check for CALL not STREAMED type. my build of telepathy-glib made tp_capabilities_get_channel_classes not introspectable thus not available to vala. Might be a local build issue though this lead me to check why this call was used and it turns out the caller is checking the old STREAMED type instead of CALL one. And there is a telepathy glib util function that neatly replace this section of custom code. So all in all this patch remove the offending function call and fix an old bug. Replace custom code with "caps.supports_audio_call (TelepathyGLib.HandleType.CONTACT)": - fixes the non introspectable call - removes the check on obsolete STREAMED type (all the other sources in gnome-contacts now switched to CALL type already, expect this leftover).
Attachment 231513 [details] pushed as 5b9052a - Fix check is_callable to check for CALL not STREAMED type.
makes a lot of sense! thanks.