Browse Source

If CHANTYPES is not specified in 005, and autoprefix is on, "#" will be prepended.

issue 763


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

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

@@ -1496,7 +1496,7 @@ public class IRCParser implements Runnable {
1496 1496
 					if (!chantypes.isEmpty()) {
1497 1497
 						channelName = chantypes.charAt(0)+sChannelName;
1498 1498
 					} else {
1499
-						return;
1499
+						channelName = "#"+sChannelName;
1500 1500
 					}
1501 1501
 				} else {
1502 1502
 					return;

Loading…
Cancel
Save