Browse Source

Revert rv3722 - Fixes issue 1141


git-svn-id: http://svn.dmdirc.com/trunk@3924 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Shane Mc Cormack 16 years ago
parent
commit
865e279d71
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/com/dmdirc/parser/ProcessNick.java

+ 2
- 1
src/com/dmdirc/parser/ProcessNick.java View File

@@ -56,7 +56,8 @@ public class ProcessNick extends IRCProcessor {
56 56
 			iClient.setUserBits(token[token.length-1],true);
57 57
 			// Readd the client
58 58
 			if (!isSameNick && myParser.getClientInfo(iClient.getNickname()) != null) {
59
-				myParser.onPostErrorInfo(new ParserError(ParserError.ERROR_FATAL, "Nick change would overwrite existing client", myParser.getLastLine()), false);
59
+//				myParser.onPostErrorInfo(new ParserError(ParserError.ERROR_FATAL, "Nick change would overwrite existing client", myParser.getLastLine()), false);
60
+				myParser.callErrorInfo(new ParserError(ParserError.ERROR_FATAL, "Nick change would overwrite existing client", myParser.getLastLine()));
60 61
 			} else {
61 62
 				if (!isSameNick) {
62 63
 					myParser.addClient(iClient);

Loading…
Cancel
Save