Преглед на файлове

Check for the first character not the 2nd...

tags/0.6.3m2a1
Shane Mc Cormack преди 15 години
родител
ревизия
aa7e707d41
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      src/com/dmdirc/parser/irc/ProcessMessage.java

+ 1
- 1
src/com/dmdirc/parser/irc/ProcessMessage.java Целия файл

@@ -159,7 +159,7 @@ public class ProcessMessage extends IRCProcessor {
159 159
 		// CTCP and CTCPReplies that are aimed at a channel with a prefix are
160 160
 		// handled as if the prefix wasn't used. This can be changed in the future
161 161
 		// if desired.
162
-		final char modePrefix = token[2].charAt(1);
162
+		final char modePrefix = token[2].charAt(0);
163 163
 		final boolean hasModePrefix =  (myParser.prefixMap.containsKey(modePrefix) && !myParser.prefixModes.containsKey(modePrefix));
164 164
 		final String targetName = (hasModePrefix) ? token[2].substring(1) : token[2];
165 165
 		

Loading…
Отказ
Запис