facebook: fixed the timer using seconds instead of milliseconds facebook

Sat, 15 Aug 2015 21:21:10 -0400

author
James Geboski <jgeboski@gmail.com>
date
Sat, 15 Aug 2015 21:21:10 -0400
branch
facebook
changeset 37352
dd1528f03f59
parent 37351
914c79d327a9
child 37353
97bddd687cf8

facebook: fixed the timer using seconds instead of milliseconds

libpurple/protocols/facebook/data.c file | annotate | diff | comparison | revisions
--- a/libpurple/protocols/facebook/data.c	Sat Aug 15 21:11:13 2015 -0400
+++ b/libpurple/protocols/facebook/data.c	Sat Aug 15 21:21:10 2015 -0400
@@ -236,7 +236,7 @@
 	fb_data_clear_timeout(fata, name, TRUE);
 
 	key = g_strdup(name);
-	id = purple_timeout_add_seconds(interval, func, data);
+	id = purple_timeout_add(interval, func, data);
 	g_hash_table_replace(priv->evs, key, GUINT_TO_POINTER(id));
 }
 

mercurial