mirror of
https://github.com/matrix-construct/construct
synced 2025-01-13 08:23:56 +01:00
modules/m_vm_fetch: Fix state fetch condition.
This commit is contained in:
parent
1f82e009b7
commit
4b949e7b01
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ ircd::m::vm::fetch::state(const event &event,
|
|||
m::sounding(room)
|
||||
};
|
||||
|
||||
if(at<"depth"_>(event) < sounding_depth)
|
||||
if(at<"depth"_>(event) > sounding_depth)
|
||||
return;
|
||||
|
||||
auto futures
|
||||
|
|
Loading…
Reference in a new issue