mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +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.account,
|
||||||
required this.face,
|
required this.face,
|
||||||
List<RecognizeFaceItem>? items,
|
List<RecognizeFaceItem>? items,
|
||||||
}) : items = items
|
}) : items = items?.sorted((a, b) => b.fileId.compareTo(a.fileId));
|
||||||
?.sorted((a, b) => b.fileId.compareTo(a.fileId))
|
|
||||||
.reversed
|
|
||||||
.toList();
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String toString() => _$toString();
|
String toString() => _$toString();
|
||||||
|
|
Loading…
Reference in a new issue