浏览代码

fix: 兼容outgoing模式

eryajf 1 年之前
父节点
当前提交
9460d4a0bf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/tools.go

+ 1 - 1
public/tools.go

@@ -127,7 +127,7 @@ func GetReadTime(t time.Time) string {
 func CheckRequestWithCredentials(ts, sg string) (clientId string, pass bool) {
 	clientId, pass = "", false
 	credentials := Config.Credentials
-	if credentials == nil || len(credentials) == 0 {
+	if len(credentials) == 0 || len(Config.AllowOutgoingGroups) == 0 {
 		return "", true
 	}
 	for _, credential := range Config.Credentials {