aboutsummaryrefslogtreecommitdiffstats
path: root/skype/skype.c
diff options
context:
space:
mode:
Diffstat (limited to 'skype/skype.c')
-rw-r--r--skype/skype.c3
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))
{