compile, then ship
This commit is contained in:
parent
50e43569e4
commit
9b28e2f159
10
hfcs.go
10
hfcs.go
|
@ -184,7 +184,7 @@ func matchfilter(h *Honk, f *Filter) bool {
|
||||||
func rejectxonk(xonk *Honk) bool {
|
func rejectxonk(xonk *Honk) bool {
|
||||||
filts := getfilters(xonk.UserID, filtReject)
|
filts := getfilters(xonk.UserID, filtReject)
|
||||||
for _, f := range filts {
|
for _, f := range filts {
|
||||||
if matchfilter(xonk, filts) {
|
if matchfilter(xonk, f) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -194,7 +194,7 @@ func rejectxonk(xonk *Honk) bool {
|
||||||
func skipMedia(xonk *Honk) bool {
|
func skipMedia(xonk *Honk) bool {
|
||||||
filts := getfilters(xonk.UserID, filtSkipMedia)
|
filts := getfilters(xonk.UserID, filtSkipMedia)
|
||||||
for _, f := range filts {
|
for _, f := range filts {
|
||||||
if matchfilter(xonk, filts) {
|
if matchfilter(xonk, f) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -211,8 +211,10 @@ func osmosis(honks []*Honk, userid int64) []*Honk {
|
||||||
j := 0
|
j := 0
|
||||||
outer:
|
outer:
|
||||||
for _, h := range honks {
|
for _, h := range honks {
|
||||||
if matchfilter(h, filts) {
|
for _, f := range filts {
|
||||||
continue outer
|
if matchfilter(h, f) {
|
||||||
|
continue outer
|
||||||
|
}
|
||||||
}
|
}
|
||||||
honks[j] = h
|
honks[j] = h
|
||||||
j++
|
j++
|
||||||
|
|
Loading…
Reference in New Issue