mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
modules/client/sync/rooms/state: Ensure branch not taken on phased sync.
This commit is contained in:
parent
df2772c113
commit
4051d11812
1 changed files with 2 additions and 1 deletions
|
@ -216,7 +216,8 @@ bool
|
|||
ircd::m::sync::_room_state_polylog(data &data)
|
||||
{
|
||||
if(!apropos(data, data.room_head))
|
||||
return false;
|
||||
if(!data.phased || int64_t(data.range.first) > 0)
|
||||
return false;
|
||||
|
||||
return room_state_polylog_events(data);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue