We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b3b30e commit 490a1a6Copy full SHA for 490a1a6
topics.go
@@ -514,7 +514,7 @@ func (x *TopicsIndex) seek(filter string, d int) *particle {
514
515
// trim removes empty filter particles from the index.
516
func (x *TopicsIndex) trim(n *particle) {
517
- for n.parent != nil && n.retainPath == "" && n.particles.len()+n.subscriptions.Len()+n.shared.Len() == 0 {
+ for n.parent != nil && n.retainPath == "" && n.particles.len()+n.subscriptions.Len()+n.shared.Len()+n.inlineSubscriptions.Len() == 0 {
518
key := n.key
519
n = n.parent
520
n.particles.delete(key)
0 commit comments