Ensure DisabledRoomInputToolbarView is used. Fix previewing rooms. Fix favourited DMs in Home.

This commit is contained in:
Doug
2021-11-03 10:18:27 +00:00
parent 24bbfca511
commit 6497cfd8e2
8 changed files with 22 additions and 13 deletions

View File

@@ -427,7 +427,7 @@ public class RecentsListService: NSObject, RecentsListServiceProtocol {
private func updateDirectFetcher(_ fetcher: MXRoomListDataFetcher, for mode: RecentsDataSourceMode) {
switch mode {
case .home:
fetcher.fetchOptions.filterOptions.notDataTypes = [.invited, .lowPriority]
fetcher.fetchOptions.filterOptions.notDataTypes = [.invited, .favorited, .lowPriority]
case .people:
fetcher.fetchOptions.filterOptions.notDataTypes = [.lowPriority]
default: