fix(mobile): assetList is empty (#4213)
* fix(mobile): assetList is empty * add comments --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
parent
3bef456923
commit
c0ce81ca0e
1 changed files with 6 additions and 0 deletions
|
@ -218,6 +218,12 @@ class BackupNotifier extends StateNotifier<BackUpState> {
|
|||
final assetCountInAlbum = await album.assetCountAsync;
|
||||
if (assetCountInAlbum > 0) {
|
||||
final assetList = await album.getAssetListPaged(page: 0, size: 1);
|
||||
|
||||
// Even though we check assetCountInAlbum to make sure that there are assets in album
|
||||
// The `getAssetListPaged` method still return empty list and cause not assets get rendered
|
||||
if (assetList.isEmpty) {
|
||||
continue;
|
||||
}
|
||||
final thumbnailAsset = assetList.first;
|
||||
try {
|
||||
final thumbnailData = await thumbnailAsset
|
||||
|
|
Loading…
Reference in a new issue