diff options
author | dequis <dx@dxzone.com.ar> | 2015-03-13 20:13:24 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-03-13 20:13:24 -0300 |
commit | fedc8f18391b7d623a527c26dd70f21705968bcd (patch) | |
tree | 31507ced16815724086d84b9ff936e72f7638ab3 /protocols/twitter/twitter_lib.c | |
parent | 3bb333cb89512308cbc3d569dfe2bf9bbcfc433d (diff) |
twitter: fix _last_tweet setting, which broke during a merge
Commit eb4ad8d (a merge commit, yes) changed it to _last_tweet and
missed one of the three. Not entirely sure if wilmer's fault, could be
mine when I did the merge of his merge on my side. Whatever.
Diffstat (limited to 'protocols/twitter/twitter_lib.c')
-rw-r--r-- | protocols/twitter/twitter_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c index 2da38337..c20f8295 100644 --- a/protocols/twitter/twitter_lib.c +++ b/protocols/twitter/twitter_lib.c @@ -831,7 +831,7 @@ static void twitter_status_show(struct im_connection *ic, struct twitter_xml_sta td->timeline_id = MAX(td->timeline_id, status->rt_id); last_id_str = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id); - set_setstr(&ic->acc->set, "last_tweet", last_id_str); + set_setstr(&ic->acc->set, "_last_tweet", last_id_str); g_free(last_id_str); } |