# HG changeset patch # User Yoshiki Yazawa # Date 1216207501 -32400 # Node ID 423dc1a670c99ec19405eb51a12938fcc7958f69 # Parent dd27aeead474ce70aa545e81e4fea31897087c73 try to remove duplication of message which posted by myself. diff -r dd27aeead474 -r 423dc1a670c9 pidgin-twitter.c --- a/pidgin-twitter.c Wed Jul 16 19:33:45 2008 +0900 +++ b/pidgin-twitter.c Wed Jul 16 20:25:01 2008 +0900 @@ -193,7 +193,10 @@ for(stp = stlist; stp; stp=stp->next) { status_t *st = (status_t *)stp->data; - if(st->id > lastid) { + if(st->id > lastid && + strcmp(st->screen_name, + purple_prefs_get_string(OPT_SCREEN_NAME_TWITTER))) { + gchar *msg = NULL; msg = g_strdup_printf("%s: %s\n", st->screen_name, st->text);