mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Merge pull request #586 from LemonBoy/fix-580
Process the nick changes in queries before the PRIVMSG is handled.
This commit is contained in:
commit
91f48c6f0e
2 changed files with 7 additions and 16 deletions
|
|
@ -78,6 +78,13 @@ static void event_privmsg(SERVER_REC *server, const char *data,
|
|||
if (!server_has_nick(server, query->name))
|
||||
query_change_nick(query, nick);
|
||||
}
|
||||
} else {
|
||||
/* process the changes to the query structure now, before the
|
||||
* privmsg is dispatched. */
|
||||
if (g_strcmp0(query->name, nick) != 0)
|
||||
query_change_nick(query, nick);
|
||||
if (address != NULL && g_strcmp0(query->address, address) != 0)
|
||||
query_change_address(query, address);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue