Skip to content

Commit

Permalink
fix_: store query lastrequest (#5767)
Browse files Browse the repository at this point in the history
  • Loading branch information
plopezlpz authored Aug 27, 2024
1 parent 1418d40 commit 0c08889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/messenger_mailserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ func (m *Messenger) syncFiltersFrom(ms mailservers.Mailserver, filters []*transp
chatID = filter.ChatID
}

topicData, ok := topicsData[filter.PubsubTopic+filter.ContentTopic.String()]
topicData, ok := topicsData[fmt.Sprintf("%s-%s", filter.PubsubTopic, filter.ContentTopic)]
var capToDefaultSyncPeriod = true
if !ok {
if lastRequest == 0 {
Expand Down

0 comments on commit 0c08889

Please sign in to comment.