Merge pull request #11 from clean-cloogle/ctcp-ping
authordopefishh <mart@martlubbers.net>
Tue, 18 Jul 2017 12:28:58 +0000 (14:28 +0200)
committerGitHub <noreply@github.com>
Tue, 18 Jul 2017 12:28:58 +0000 (14:28 +0200)
Add CTCP ping

IRC.icl

diff --git a/IRC.icl b/IRC.icl
index f51bc8a..8d8d9fe 100644 (file)
--- a/IRC.icl
+++ b/IRC.icl
@@ -86,7 +86,7 @@ where
                >>= \s->optional (pToken '.') >>= pure o maybe s (\p->s+++toString s)
                where
                        parseName :: Parser Char String
-                       parseName = toString <$> pSome (pAlpha <|> pDigit <|> pOneOf ['-'])
+                       parseName = toString <$> pSome (pAlpha <|> pDigit <|> pOneOf ['-', '/'])
 
 //Parse Cmd
 parseCmd :: [Char] -> Either Error IRCCommand