Update models/actions/task.go

Co-authored-by: ChristopherHX <christopher.homberger@web.de>
This commit is contained in:
Jason Song 2023-01-05 18:04:23 +08:00 committed by GitHub
parent 730af9be50
commit 22496aa57e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -496,7 +496,7 @@ func isSubset(set, subset []string) bool {
}
for _, v := range subset {
if m.Contains(v) {
if !m.Contains(v) {
return false
}
}