# HG changeset patch # User Stu Tomlinson # Date 1131127315 0 # Node ID 2ff2965895f3e8372e2e48e0c9302ce32d6b4c2a # Parent 0fab529c01fcf0d3ef1fc1838e110bcb5dc1ddd8 [gaim-migrate @ 14267] I think this is what was intended here committer: Tailor Script diff -r 0fab529c01fc -r 2ff2965895f3 plugins/idle.c --- a/plugins/idle.c Fri Nov 04 17:47:04 2005 +0000 +++ b/plugins/idle.c Fri Nov 04 18:01:55 2005 +0000 @@ -60,7 +60,7 @@ "setting idle time for %s to %d\n", gaim_account_get_username(acct), mins_idle); - t -= time(NULL) - (60 * mins_idle); /* subtract seconds idle from current time */ + t = time(NULL) - (60 * mins_idle); /* subtract seconds idle from current time */ gc->last_sent_time = t; gaim_presence_set_idle(presence, mins_idle ? TRUE : FALSE, t);