mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-11 13:59:13 +00:00
Fixes #448 - Prevent room timelines from becoming stale if the room drops out of the sliding sync window
This commit is contained in:
parent
9f865cf5c9
commit
e8b48d4897
@ -141,7 +141,7 @@ class RoomProxy: RoomProxyProtocol {
|
||||
}
|
||||
|
||||
func addTimelineListener(listener: TimelineListener) -> Result<Void, RoomProxyError> {
|
||||
if let token = slidingSyncRoom.addTimelineListener(listener: listener) {
|
||||
if let token = slidingSyncRoom.subscribeAndAddTimelineListener(listener: listener, settings: nil) {
|
||||
timelineObservationToken = token
|
||||
return .success(())
|
||||
} else {
|
||||
|
1
changelog.d/448.bugfix
Normal file
1
changelog.d/448.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Prevent room timelines from becoming stale if the room drops out of the sliding sync window
|
Loading…
x
Reference in New Issue
Block a user