Support only Call1 channels
Empathy uses to support 2 D-Bus API for calls: - StreamedMedia: legacy API - Call.DRAFT: experimental version of the new API Since 3.3.90, Empathy only supports Call1, the first stable version of the new API, so the Shell should do the same. https://bugzilla.gnome.org/show_bug.cgi?id=667694
This commit is contained in:

committed by
Guillaume Desmottes

parent
9f1ed13a38
commit
f248aa69dc
@ -233,8 +233,7 @@ const Client = new Lang.Class({
|
||||
|
||||
if (chanType == Tp.IFACE_CHANNEL_TYPE_TEXT)
|
||||
this._approveTextChannel(account, conn, channel, dispatchOp, context);
|
||||
else if (chanType == Tp.IFACE_CHANNEL_TYPE_STREAMED_MEDIA ||
|
||||
chanType == 'org.freedesktop.Telepathy.Channel.Type.Call.DRAFT')
|
||||
else if (chanType == Tp.IFACE_CHANNEL_TYPE_CALL)
|
||||
this._approveCall(account, conn, channel, dispatchOp, context);
|
||||
else if (chanType == Tp.IFACE_CHANNEL_TYPE_FILE_TRANSFER)
|
||||
this._approveFileTransfer(account, conn, channel, dispatchOp, context);
|
||||
@ -265,8 +264,7 @@ const Client = new Lang.Class({
|
||||
|
||||
let props = channel.borrow_immutable_properties();
|
||||
|
||||
if (props['org.freedesktop.Telepathy.Channel.Type.Call.DRAFT.InitialVideo'] ||
|
||||
props[Tp.PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO])
|
||||
if (props[Tp.PROP_CHANNEL_TYPE_CALL_INITIAL_VIDEO])
|
||||
isVideo = true;
|
||||
|
||||
// We got the TpContact
|
||||
|
Reference in New Issue
Block a user