telepathyClient: Fix two minor typos

https://bugzilla.gnome.org/show_bug.cgi?id=642793
This commit is contained in:
Jasper St. Pierre 2011-02-20 02:40:46 -05:00
parent adb04eb010
commit 97bb5b6680

View File

@ -41,7 +41,6 @@ function Client() {
Client.prototype = { Client.prototype = {
_init : function() { _init : function() {
this._accounts = {};
// channel path -> Source // channel path -> Source
this._sources = {}; this._sources = {};
@ -55,7 +54,7 @@ Client.prototype = {
// We only care about single-user text-based chats // We only care about single-user text-based chats
let props = {}; let props = {};
props[Tp.PROP_CHANNEL_TARGET_HANDLE_TYPE] = Tp.IFACE_CHANNEL_TYPE_TEXT; props[Tp.PROP_CHANNEL_CHANNEL_TYPE] = Tp.IFACE_CHANNEL_TYPE_TEXT;
props[Tp.PROP_CHANNEL_TARGET_HANDLE_TYPE] = Tp.HandleType.CONTACT; props[Tp.PROP_CHANNEL_TARGET_HANDLE_TYPE] = Tp.HandleType.CONTACT;
this._observer.add_observer_filter(props); this._observer.add_observer_filter(props);