From 7e2ead40f87d26d7d3ade78fa10fe09c2baed05b Mon Sep 17 00:00:00 2001 From: vishnukvmd Date: Fri, 6 Aug 2021 14:22:07 +0530 Subject: [PATCH] Change live photo name --- lib/utils/file_uploader_util.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/file_uploader_util.dart b/lib/utils/file_uploader_util.dart index 470bee7a1..e57a95ae5 100644 --- a/lib/utils/file_uploader_util.dart +++ b/lib/utils/file_uploader_util.dart @@ -78,8 +78,8 @@ Future _getMediaUploadDataFromAssetFile(ente.File file) async { throw InvalidFileUploadState(errMsg); } final tempPath = Configuration.instance.getTempDirectory(); - // .elv -> Ente live photo - final livePhotoPath = tempPath + file.generatedID.toString() + ".elv"; + // .elp -> ente live photo + final livePhotoPath = tempPath + file.generatedID.toString() + ".elp"; _logger.fine("Uploading zipped live photo from " + livePhotoPath); var encoder = ZipFileEncoder(); encoder.create(livePhotoPath);