mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
modules/federation/user_device: Mark use of zero value for stream_id here.
This commit is contained in:
parent
1cabd663fb
commit
22e71d57e2
1 changed files with 4 additions and 1 deletions
|
@ -81,7 +81,10 @@ get__user_devices(client &client,
|
|||
|
||||
json::stack::member
|
||||
{
|
||||
top, "stream_id", json::value(0L)
|
||||
top, "stream_id", json::value
|
||||
{
|
||||
0L // unused; triggers query from synapse on m.device_list_update
|
||||
}
|
||||
};
|
||||
|
||||
json::stack::array devices
|
||||
|
|
Loading…
Reference in a new issue