aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/twitter/twitter_lib.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-03-13 20:13:24 -0300
committerdequis <dx@dxzone.com.ar>2015-03-13 20:13:24 -0300
commitfedc8f18391b7d623a527c26dd70f21705968bcd (patch)
tree31507ced16815724086d84b9ff936e72f7638ab3 /protocols/twitter/twitter_lib.c
parent3bb333cb89512308cbc3d569dfe2bf9bbcfc433d (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.c2
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);
}