fix(web): suppress album upload notification (#10717)

* fix(web): suppress album upload notification

* restore translation strings
This commit is contained in:
Alex
2024-07-01 12:19:57 -05:00
committed by GitHub
parent ac51cad075
commit 4193b0dede
2 changed files with 18 additions and 15 deletions

View File

@@ -159,7 +159,7 @@ async function fileUploader(assetFile: File, albumId?: string, replaceAssetId?:
if (albumId) {
uploadAssetsStore.updateAsset(deviceAssetId, { message: $t('asset_adding_to_album') });
await addAssetsToAlbum(albumId, [responseData.id]);
await addAssetsToAlbum(albumId, [responseData.id], false);
uploadAssetsStore.updateAsset(deviceAssetId, { message: $t('asset_added_to_album') });
}