mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Fix reverse order of items when using <before/> in Pubsub with RSM (#3621)
This commit is contained in:
parent
c2d8bc7b2f
commit
4ee10c155d
@ -758,12 +758,12 @@ get_items(Nidx, _From, #rsm_set{max = Max, index = IncIndex,
|
||||
{_, <<>>, undefined} ->
|
||||
%% 2.5 Requesting the Last Page in a Result Set
|
||||
SubList = lists:reverse(RItems),
|
||||
{Count, lists:sublist(SubList, Limit)};
|
||||
{Count-Limit, lists:reverse(lists:sublist(SubList, Limit))};
|
||||
{_, Stamp, undefined} ->
|
||||
BeforeNow = encode_stamp(Stamp),
|
||||
{NewIndex, SubList} = extract_sublist(before_now, BeforeNow,
|
||||
0, lists:reverse(RItems)),
|
||||
{Count-NewIndex-1, lists:sublist(SubList, Limit)};
|
||||
{Count-NewIndex-Limit, lists:reverse(lists:sublist(SubList, Limit))};
|
||||
{_, undefined, Stamp} ->
|
||||
AfterNow = encode_stamp(Stamp),
|
||||
{NewIndex, SubList} = extract_sublist(after_now, AfterNow,
|
||||
|
Loading…
Reference in New Issue
Block a user