Skip to content

Commit

Permalink
fix(mobile): fix asset order in album from latest to oldest (immich-a…
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 authored Jul 31, 2023
1 parent 51cfe10 commit c587fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/shared/models/album.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Album {
}

Stream<void> watchRenderList(GroupAssetsBy groupAssetsBy) async* {
final query = assets.filter().sortByFileCreatedAt();
final query = assets.filter().sortByFileCreatedAtDesc();
_renderList = await RenderList.fromQuery(query, groupAssetsBy);
yield _renderList;
await for (final _ in query.watchLazy()) {
Expand Down

0 comments on commit c587fb1

Please sign in to comment.