fix_: make StoreNodeRequestManager filters ephemeral

This commit is contained in:
Igor Sirotin 2024-07-25 18:21:21 +01:00
parent b36ddda6ed
commit 81f3a0d0f2
2 changed files with 3 additions and 1 deletions

View File

@ -279,6 +279,8 @@ func (m *StoreNodeRequestManager) getFilter(requestType storeNodeRequestType, da
return nil, false, fmt.Errorf("invalid store node request type: %d", requestType)
}
filter.Ephemeral = true
return filter, true, nil
}

View File

@ -543,7 +543,7 @@ func (f *FiltersManager) LoadPublic(chatID string, pubsubTopic string) (*Filter,
f.logger.Debug("updating pubsub topic for filter",
zap.String("chatID", chatID),
zap.String("type", "public"),
zap.String("oldTOpic", chat.PubsubTopic),
zap.String("oldTopic", chat.PubsubTopic),
zap.String("newTopic", pubsubTopic),
)
chat.PubsubTopic = pubsubTopic