fix: ignore list

This commit is contained in:
Christian Pauly 2020-09-19 15:05:43 +02:00
parent a77e776479
commit 510de05304
1 changed files with 6 additions and 4 deletions

View File

@ -1527,10 +1527,12 @@ sort order of ${prevState.sortOrder}. This should never happen...''');
}
/// A list of mxids of users who are ignored.
List<String> get ignoredUsers =>
accountData.containsKey('m.ignored_user_list')
? accountData['m.ignored_user_list'].content['ignored_users']
: [];
List<String> get ignoredUsers => (accountData
.containsKey('m.ignored_user_list') &&
accountData['m.ignored_user_list'].content['ignored_users'] is List)
? List<String>.from(
accountData['m.ignored_user_list'].content['ignored_users'])
: [];
/// Ignore another user. This will clear the local cached messages to
/// hide all previous messages from this user.