Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2010-11-07 18:41:21 +0300
committerEion Robb <eion@robbmob.com>2010-11-07 18:41:21 +0300
commit5f10db094746e8bd8c356770deb85eb25f3a5487 (patch)
treef884f30c2a47930a25258bf4c57fedd3ca4d8dec
parentb18e57abd0b58f17d784f91f4de8c7abd1a32d2a (diff)
Fix for debug log spam, continually requesting the chat window information
-rw-r--r--skype_events.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skype_events.c b/skype_events.c
index b76f6f3..3ce2af6 100644
--- a/skype_events.c
+++ b/skype_events.c
@@ -981,7 +981,7 @@ skype_find_chat(const gchar *chat_id, PurpleAccount *this_account)
chat = g_new0(SkypeChat, 1);
chat->name = g_strdup(chat_id);
chat->account = this_account;
- g_hash_table_insert(chat_link_table, (char*)chat_id, chat);
+ g_hash_table_insert(chat_link_table, chat->name, chat);
skype_send_message_nowait("GET CHAT %s STATUS", chat_id);
skype_send_message_nowait("GET CHAT %s TYPE", chat_id);