Skip to content

Commit

Permalink
Merge pull request #68 from tapichu/master
Browse files Browse the repository at this point in the history
Fix problem with 'QUIT' command
  • Loading branch information
martynsmith committed Nov 17, 2011
2 parents b488e75 + 932a57b commit 7764063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/irc.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ function parseMessage(line, stripColors) { // {{{
}

// Parse command
match = line.match(/^([^ ]+) +/);
match = line.match(/^([^ ]+) */);
message.command = match[1];
message.rawCommand = match[1];
message.commandType = 'normal';
Expand Down

0 comments on commit 7764063

Please sign in to comment.