fix(chat2): query ordering

This commit is contained in:
Richard Ramos 2022-10-21 11:37:19 -04:00 committed by RichΛrd
parent 3b4dcf3195
commit 83b05881ff
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ func (c *Chat) retrieveHistory(connectionWg *sync.WaitGroup) {
response, err := c.node.Store().Query(tCtx, q,
store.WithAutomaticRequestId(),
storeOpt,
store.WithPaging(true, 100))
store.WithPaging(false, 100))
if err != nil {
c.ui.ErrorMessage(fmt.Errorf("could not query storenode: %w", err))