diff options
author | VMiklos <vmiklos@frugalware.org> | 2007-10-06 22:06:14 +0200 |
---|---|---|
committer | VMiklos <vmiklos@frugalware.org> | 2007-10-06 22:06:14 +0200 |
commit | 3ef191040a3d88b21e287cf3c64bd9fc7e8c0026 (patch) | |
tree | aa85e6c1ee9c4fba0f6a5ba9931b5ab8fafbd0a9 | |
parent | 5a61e43f470068f98ee7b04685376c23b9468974 (diff) |
don't mark messages as seen
- they still spams the skype client
- unnecessary transfer then
-rw-r--r-- | skype/skype.c | 3 |
1 files changed, 0 insertions, 3 deletions
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)) { |