Merge pull request #7534 from vector-im/bugfix/nfe/unexpected_sync_param

temporary workaround for a failing sync due to unexpected `enableUnre…
This commit is contained in:
Benoit Marty 2022-11-07 17:06:52 +01:00 committed by GitHub
commit 76d3050551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,9 @@ internal object FilterFactory {
}
private fun createElementTimelineFilter(): RoomEventFilter? {
return RoomEventFilter(enableUnreadThreadNotifications = true)
// we need to check if homeserver supports thread notifications before setting this param
// return RoomEventFilter(enableUnreadThreadNotifications = true)
return null
}
private fun createElementStateFilter(): RoomEventFilter {