浏览代码

fix histserv nick reservation

tags/v1.0.0-rc1
Shivaram Lingamneni 5 年前
父节点
当前提交
4caa362f18
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      irc/nickname.go

+ 2
- 1
irc/nickname.go 查看文件

@@ -15,9 +15,10 @@ import (
15 15
 )
16 16
 
17 17
 var (
18
+	// anything added here MUST be casefolded:
18 19
 	restrictedNicknames = map[string]bool{
19 20
 		"=scene=":  true, // used for rp commands
20
-		"HistServ": true, // TODO(slingamn) this should become a real service
21
+		"histserv": true, // TODO(slingamn) this should become a real service
21 22
 	}
22 23
 )
23 24
 

正在加载...
取消
保存