Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/message.c

    rc4bc92a r5ec4129  
    7171                        if( bud )
    7272                        {
    73                                 bud->last_msg = time( NULL );
     73                                bud->last_act = time( NULL );
    7474                                from = bud->ext_jid ? : bud->bare_jid;
    7575                        }
     
    8080                if( type && strcmp( type, "headline" ) == 0 )
    8181                {
    82                         if( ( c = xt_find_node( node->children, "subject" ) ) && c->text_len > 0 )
    83                                 g_string_append_printf( fullmsg, "Headline: %s\n", c->text );
     82                        c = xt_find_node( node->children, "subject" );
     83                        g_string_append_printf( fullmsg, "Headline: %s\n", c && c->text_len > 0 ? c->text : "" );
    8484                       
    8585                        /* <x xmlns="jabber:x:oob"><url>http://....</url></x> can contain a URL, it seems. */
Note: See TracChangeset for help on using the changeset viewer.