mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
modules/client/sync/device_one_time_keys_count: Fix error.
This commit is contained in:
parent
2a7dc12386
commit
84d4b091fe
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ ircd::m::sync::device_one_time_keys_count_linear(data &data)
|
|||
if(json::get<"state_key"_>(*data.event) != data.device_id)
|
||||
return false;
|
||||
|
||||
if(json::get<"room_id"_>(*data.event) != data.user_room);
|
||||
if(json::get<"room_id"_>(*data.event) != data.user_room)
|
||||
return false;
|
||||
|
||||
const json::object &one_time_keys
|
||||
|
|
Loading…
Reference in a new issue