Browse Source

Sort face search response most recent first

Vishnu Mohandas 5 năm trước cách đây
mục cha
commit
d6f34d00c2
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      lib/face_search_manager.dart

+ 3 - 0
lib/face_search_manager.dart

@@ -54,6 +54,9 @@ class FaceSearchManager {
         photos.add(photo);
       }
     }
+    photos.sort((first, second) {
+      return second.createTimestamp.compareTo(first.createTimestamp);
+    });
     return photos;
   }