Sending an instant message via Jabber now resets the idle timer.
authorArt Cancro <ajc@citadel.org>
Mon, 24 Mar 2008 02:22:14 +0000 (02:22 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 24 Mar 2008 02:22:14 +0000 (02:22 +0000)
citadel/modules/jabber/xmpp_messages.c

index 5cd540c32ae535b29fa88d6023b50a5546f4e97c..6ae5e83b0df1b1d46d2e7801901983cf8b72c5e7 100644 (file)
@@ -103,5 +103,6 @@ void jabber_send_message(char *message_to, char *message_body) {
        free(XMPP->message_body);
        XMPP->message_body = NULL;
        XMPP->message_to[0] = 0;
+       time(&CC->lastidle);
 }