Hide harmless error when no matches for filter

This commit is contained in:
miruka 2019-08-19 14:06:11 -04:00
parent 314b2c30ad
commit e713eb7e24

View File

@ -16,8 +16,10 @@ HInteractiveRectangle {
readonly property bool forceExpand: readonly property bool forceExpand:
Boolean(accountRoomList.filter) Boolean(accountRoomList.filter)
readonly property bool collapsed: // Hide harmless error when a filter matches nothing
accountRoomList.collapseAccounts[model.data.user_id] || false readonly property bool collapsed: try {
return accountRoomList.collapseAccounts[model.data.user_id] || false
} catch (err) {}
onIsCurrentChanged: if (isCurrent) beHighlighted() onIsCurrentChanged: if (isCurrent) beHighlighted()