Getting all messages in chronological order
I've been using the
MessageChannelBehavior#messages
flow (which is documented as being in chronological order) for a while, but always with the default EntitySupplyStrategy
(cacheWithRestFallback
). Since I now want to grab all messages in the channel, I changed by code from channel.messages.collect { ... }
to withStrategy(EntitySupplyStrategy.rest).messages.collect { ... }
(I am aware it may be performance intensive), however, messages now come in reverse chronological order....
Any idea what is wrong here?5 Replies
I've been looking at the code, and don't understand why that would be so
it seems like discord always sends messages requested with this endpoint ordered from newest to oldest, no matter if requesting messages before or after some id
so kord needs to sort the messages in each page (if requesting more than 100 messages) to have the documented order, which isn't done rn
you can see this by running this code:
so the actual behavior for
MessageChannelBehavior.messages
isn't what's documented because of wrong assumptions about the api responseright
mmm
I'll have to do some rethinking then
It may not really be feasible to get all messages in memory, then reverse them
Thanks!
not really, i think this should be fixed in kord instead
because rn the order is neither cronological nor reversed cronological, it's some weird mix because of pagination
ah true
Completely overlooked that for some reason