logic fail after refactor
This commit is contained in:
parent
23f9a3b8bf
commit
6cb5152611
2
web.go
2
web.go
|
@ -1037,7 +1037,7 @@ func threadsort(honks []*Honk) []*Honk {
|
||||||
p.Style += fmt.Sprintf(" level%d", level)
|
p.Style += fmt.Sprintf(" level%d", level)
|
||||||
}
|
}
|
||||||
levelup := true
|
levelup := true
|
||||||
if pp := honkx[p.RID]; pp != nil && p.Honker != pp.Honker {
|
if pp := honkx[p.RID]; pp == nil || p.Honker == pp.Honker {
|
||||||
levelup = false
|
levelup = false
|
||||||
}
|
}
|
||||||
if levelup {
|
if levelup {
|
||||||
|
|
Loading…
Reference in New Issue