0
0
Fork 0
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:
Jason Volk 2019-03-09 18:52:48 -08:00
parent 77896456c4
commit bfc189da7e

View file

@ -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}