Merge branch 'main' into clip-desktop

This commit is contained in:
Abhinav 2023-11-06 16:19:16 +05:30
commit 563175830c
2 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,12 @@
# CHANGELOG
## v1.6.67
## v1.6.49
### Photo Editor
Check out our [blog](https://ente.io/blog/introducing-web-desktop-photo-editor/) to know about feature and functionalities.
## v1.6.47
### Bug Fixes
@ -9,7 +15,7 @@
- Fixed issue with Live-photo upload
- other minor ux improvement
## v1.6.66
## v1.6.46
### Bug Fixes

View file

@ -58,7 +58,7 @@ export function getUniqueSavePath(filename: string, directory: string): string {
extension,
]
.filter((x) => x) // filters out undefined/null values
.join('.');
.join('');
uniqueFileSavePath = path.join(directory, fileNameWithNumberedSuffix);
}
return uniqueFileSavePath;