diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a9ce2346..fac53fe50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/utils/main.ts b/src/utils/main.ts index f222e8db2..80aa654d7 100644 --- a/src/utils/main.ts +++ b/src/utils/main.ts @@ -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;