Changeset b1634a8


Ignore:
Timestamp:
2016-03-20T03:58:05Z (8 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
63825d6
Parents:
82b0295
git-author:
dequis <dx@…> (26-01-16 16:37:01)
git-committer:
dequis <dx@…> (20-03-16 03:58:05)
Message:

Don't send 301 RPL_AWAY when talking to contacts through &bitlbee

Fixes trac ticket 865 ("Make bitlbee send "is away" and such status
messages via &bitlbee channel instead of separate query window"),
except that the solution is to not send them at all.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_im.c

    r82b0295 rb1634a8  
    450450        }
    451451
    452         if ((away = irc_user_get_away(iu)) &&
     452        if (iu->last_channel == NULL &&
     453            (away = irc_user_get_away(iu)) &&
    453454            time(NULL) >= iu->away_reply_timeout) {
    454455                irc_send_num(iu->irc, 301, "%s :%s", iu->nick, away);
Note: See TracChangeset for help on using the changeset viewer.