fix(mobile): Sort newest first for asset selection in album (#2833)

This commit is contained in:
Alex
2023-06-17 23:09:55 -05:00
committed by GitHub
parent 34201be74c
commit b47027efc2

View File

@ -190,7 +190,7 @@ final remoteAssetsProvider =
.remoteIdIsNotNull()
.filter()
.ownerIdEqualTo(userId)
.sortByFileCreatedAt();
.sortByFileCreatedAtDesc();
final settings = ref.watch(appSettingsServiceProvider);
final groupBy =
GroupAssetsBy.values[settings.getSetting(AppSettingsEnum.groupAssetsBy)];