Skip to content

Commit

Permalink
Don't colorize the nick in kick messages
Browse files Browse the repository at this point in the history
  • Loading branch information
c99koder committed Feb 10, 2014
1 parent cd5efff commit f4880b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IRCCloud/Classes/EventsTableView.m
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ - (void)insertEvent:(Event *)event backlog:(BOOL)backlog nextIsGrouped:(BOOL)nex
else
event.formattedMsg = [event.formattedMsg stringByAppendingString:@" was"];
if(event.hostmask && event.hostmask.length)
event.formattedMsg = [event.formattedMsg stringByAppendingFormat:@" kicked by %@ (%@)", [_collapsedEvents formatNick:event.nick mode:event.fromMode colorize:colors], event.hostmask];
event.formattedMsg = [event.formattedMsg stringByAppendingFormat:@" kicked by %c%@%c (%@)", BOLD, event.nick, BOLD, event.hostmask];
else
event.formattedMsg = [event.formattedMsg stringByAppendingFormat:@" kicked by the server %c%@%c", BOLD, event.nick, CLEAR];
if(event.msg.length > 0)
Expand Down

0 comments on commit f4880b9

Please sign in to comment.