You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-06-28 05:18:38 +02:00
feat(web): include timestamp in download filename (#5878)
* Blocking multiple downloads * Blocking the download based on file name and not download type * Fixing failing workflow * Make sure the uniqueDownloadId is unique even if the selecting order is different * Using DateTime from luxon & convering the case of downloading an album * Fixing typo in the warning. * Covering the case where tha list of assets is to big * Fix format * Fix format * Fix format * Undo block multi-downloads * Running format:fix --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
This commit is contained in:
@ -44,7 +44,7 @@
|
||||
|
||||
if ($duplicateCounter > 0) {
|
||||
notificationController.show({
|
||||
message: `Skipped ${$duplicateCounter} duplicate picture${$duplicateCounter > 1 ? 's' : ''}`,
|
||||
message: `Skipped ${$duplicateCounter} duplicate asset${$duplicateCounter > 1 ? 's' : ''}`,
|
||||
type: NotificationType.Warning,
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user