Skip to content
Snippets Groups Projects
  • Erik Johnston's avatar
    cacd4fd7
    Fix MSC4222 returning full state (#17915) · cacd4fd7
    Erik Johnston authored
    There was a bug that meant we would return the full state of the room on
    incremental syncs when using lazy loaded members and there were no
    entries in the timeline.
    
    This was due to trying to use `state_filter or state_filter.all()` as a
    short hand for handling `None` case, however `state_filter` implements
    `__bool__` so if the state filter was empty it would be set to full.
    
    c.f. MSC4222 and #17888
    Fix MSC4222 returning full state (#17915)
    Erik Johnston authored
    There was a bug that meant we would return the full state of the room on
    incremental syncs when using lazy loaded members and there were no
    entries in the timeline.
    
    This was due to trying to use `state_filter or state_filter.all()` as a
    short hand for handling `None` case, however `state_filter` implements
    `__bool__` so if the state filter was empty it would be set to full.
    
    c.f. MSC4222 and #17888
test_sync.py 49.09 KiB