1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-23 17:02:25 +03:00

Fix missing threads in thread list (#2226)

Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Germain
2022-03-10 16:44:42 +00:00
committed by GitHub
parent 40d1674a5c
commit dbcd01bb43
5 changed files with 52 additions and 9 deletions

View File

@@ -183,8 +183,8 @@ export class FilterComponent {
}
private arrayMatchesFilter(filter: any[], values: any[]): boolean {
return values.length > 0 && values.every(value => {
return filter.includes(value);
return values.length > 0 && filter.every(value => {
return values.includes(value);
});
}