mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
modules/client/rooms/messages: Omit pagination tokens at ends of iteration.
This commit is contained in:
parent
77896456c4
commit
bfc189da7e
1 changed files with 10 additions and 8 deletions
|
@ -159,11 +159,13 @@ get__messages(client &client,
|
||||||
}
|
}
|
||||||
chunk.~array();
|
chunk.~array();
|
||||||
|
|
||||||
|
if(it || page.dir == 'b')
|
||||||
json::stack::member
|
json::stack::member
|
||||||
{
|
{
|
||||||
top, "start", json::value{start}
|
top, "start", json::value{start}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if(it || page.dir != 'b')
|
||||||
json::stack::member
|
json::stack::member
|
||||||
{
|
{
|
||||||
top, "end", json::value{end}
|
top, "end", json::value{end}
|
||||||
|
|
Loading…
Reference in a new issue