Changeset 5a61e43f


Ignore:
Timestamp:
2007-10-06T20:03:49Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
3ef1910
Parents:
66c9558
Message:

revert "handle topic changes"

SETTOPIC, then do the same

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r66c9558 r5a61e43f  
    7171        /* Same for file transfers. */
    7272        skype_filetransfer_status filetransfer_status;
    73         /* True if the next message will be a topic */
    74         int topic;
    7573};
    7674
     
    309307                                                {
    310308                                                        /* New body, we have everything to use imcb_buddy_msg() now! */
    311                                                         if(sd->topic)
    312                                                         {
    313                                                                 imcb_log(ic, "%s has changed the chat topic to \"%s\"", sd->handle, info);
    314                                                                 sd->topic = 0;
    315                                                         }
    316                                                         else
    317                                                                 imcb_buddy_msg(ic, sd->handle, info, 0, 0);
     309                                                        imcb_buddy_msg(ic, sd->handle, info, 0, 0);
    318310                                                }
    319311                                        }
     
    404396                                        *info = '\0';
    405397                                        info++;
    406                                         if(!strncmp(info, "TOPIC ", 6))
    407                                                 sd->topic = 1;
    408                                         else if(!strcmp(info, "STATUS MULTI_SUBSCRIBED"))
     398                                        if(!strcmp(info, "STATUS MULTI_SUBSCRIBED"))
    409399                                        {
    410400                                                struct groupchat *gc;
Note: See TracChangeset for help on using the changeset viewer.