changeset 244:c6c2bb8039ce

fixed a breakage of playing sound for the recipients.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 15 Oct 2008 18:35:25 +0900
parents 80be57d8b6fa
children e7ba6026c4f0
files pidgin-twitter.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin-twitter.c	Wed Oct 15 14:24:34 2008 +0900
+++ b/pidgin-twitter.c	Wed Oct 15 18:35:25 2008 +0900
@@ -1024,7 +1024,7 @@
     while(g_match_info_matches(match_info)) {
         gchar *user = NULL;
         if(which == RECIPIENT)
-            user = g_match_info_fetch(match_info, 1);
+            user = g_match_info_fetch(match_info, 2);
         else if(which == SENDER)
             user = g_match_info_fetch(match_info, 2);
         twitter_debug("user = %s\n", user);