From 3ef191040a3d88b21e287cf3c64bd9fc7e8c0026 Mon Sep 17 00:00:00 2001 From: VMiklos Date: Sat, 6 Oct 2007 22:06:14 +0200 Subject: don't mark messages as seen - they still spams the skype client - unnecessary transfer then --- skype/skype.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'skype') diff --git a/skype/skype.c b/skype/skype.c index d0d6940f..532196e4 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -270,14 +270,11 @@ static gboolean skype_read_callback( gpointer data, gint fd, b_input_condition c /* New message ID: * (1) Request its from field * (2) Request its body - * (3) Mark it as seen */ g_snprintf(buf, 1024, "GET CHATMESSAGE %s FROM_HANDLE\n", id); skype_write( ic, buf, strlen( buf ) ); g_snprintf(buf, 1024, "GET CHATMESSAGE %s BODY\n", id); skype_write( ic, buf, strlen( buf ) ); - g_snprintf(buf, 1024, "SET CHATMESSAGE %s SEEN\n", id); - skype_write( ic, buf, strlen( buf ) ); } else if(!strncmp(info, "FROM_HANDLE ", 12)) { -- cgit v1.2.3