mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix cover picked for Recognize person
This commit is contained in:
parent
738883387a
commit
d5172bdd4f
1 changed files with 1 additions and 4 deletions
|
@ -19,10 +19,7 @@ class PersonRecognizeProvider
|
|||
required this.account,
|
||||
required this.face,
|
||||
List<RecognizeFaceItem>? items,
|
||||
}) : items = items
|
||||
?.sorted((a, b) => b.fileId.compareTo(a.fileId))
|
||||
.reversed
|
||||
.toList();
|
||||
}) : items = items?.sorted((a, b) => b.fileId.compareTo(a.fileId));
|
||||
|
||||
@override
|
||||
String toString() => _$toString();
|
||||
|
|
Loading…
Reference in a new issue