Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
fix photo name
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhasDissa committed Oct 13, 2023
1 parent ce5203a commit 392444d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class PhotoViewModel : ViewModel() {
val outputFile =
saveDir.createFile(
"image/jpg",
"${meme.title.take(64)}-${UUID.randomUUID().toString().take(8)}"
"${meme.title.take(64)}-${UUID.randomUUID().toString().take(8)}.jpg"
)
if (outputFile == null) {
withContext(Dispatchers.Main) {
Expand Down

0 comments on commit 392444d

Please sign in to comment.