Archived
1
0
This commit is contained in:
Jeff Becker 2017-04-23 08:05:21 -04:00
parent 4f3ac9f256
commit 0966a247e5

View File

@ -24,13 +24,13 @@ func (self *FeedPolicy) AllowsNewsgroup(newsgroup string) (result bool) {
if v == "1" {
allows++
} else if v == "0" {
disallows++
return false
}
}
}
}
result = allows > 0 && disallows == 0
result = allows > 0
return
}