Update main.go

This commit is contained in:
starry
2024-12-25 07:06:41 +08:00
committed by GitHub
parent 0c5b556ea7
commit d2e9d515d5

View File

@@ -205,12 +205,11 @@ func checkURL(u string) []string {
return nil
}
// 匹配用户名或者仓库名
func checkList(matches, list []string) bool {
for _, item := range list {
if strings.HasPrefix(matches[0], item) || strings.HasPrefix(matches[1], item) {
return true
}
}
return false
for _, item := range list {
if strings.HasPrefix(matches[0], item) {
return true
}
}
return false
}