Skip to content

Commit

Permalink
Merge pull request #160 from Zoddo/charybdis/fix_euid
Browse files Browse the repository at this point in the history
Fix host on charybdis if there is no vhost
  • Loading branch information
Adam- committed Apr 15, 2016
2 parents a8f6657 + 58f0c8c commit d2ea1e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/protocol/charybdis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ struct IRCDMessageEUID : IRCDMessage
if (params[9] != "*")
na = NickAlias::Find(params[9]);

User::OnIntroduce(params[0], params[4], params[8], params[5], params[6], source.GetServer(), params[10], params[2].is_pos_number_only() ? convertTo<time_t>(params[2]) : Anope::CurTime, params[3], params[7], na ? *na->nc : NULL);
User::OnIntroduce(params[0], params[4], (params[8] != "*" ? params[8] : params[5]), params[5], params[6], source.GetServer(), params[10], params[2].is_pos_number_only() ? convertTo<time_t>(params[2]) : Anope::CurTime, params[3], params[7], na ? *na->nc : NULL);
}
};

Expand Down

0 comments on commit d2ea1e7

Please sign in to comment.