mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
modules/client/sync/rooms/account_data: Ignore since range on room account_data polylog sync.
This commit is contained in:
parent
b8adc69599
commit
494288ea77
1 changed files with 3 additions and 2 deletions
|
@ -225,8 +225,9 @@ ircd::m::sync::room_account_data_polylog_events(data &data)
|
|||
data.user_state.for_each(type, [&data, &ret]
|
||||
(const string_view &type, const string_view &state_key, const m::event::idx &event_idx)
|
||||
{
|
||||
if(!apropos(data, event_idx))
|
||||
return true;
|
||||
// We have to ignore the since range here or Riot will forget or overwrite data.
|
||||
//if(!apropos(data, event_idx))
|
||||
// return true;
|
||||
|
||||
static const event::fetch::opts fopts
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue