Skip to content

Commit

Permalink
fix(chat): Download image is saving to wrong folder
Browse files Browse the repository at this point in the history
- fetch latest dotherside for the fix
- minor cleanup

Fixes #9307
  • Loading branch information
caybro committed Jan 28, 2023
1 parent 7a3a984 commit 7ed5b0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions ui/imports/shared/views/chat/MessageContextMenuView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -476,17 +476,13 @@ StatusMenu {
id: fileDialog
title: qsTr("Please choose a directory")
selectFolder: true
selectExisting : true
selectExisting: true
selectMultiple: false
modality: Qt.NonModal
onAccepted: {
if (root.imageSource) {
root.store.downloadImageByUrl(root.imageSource, fileDialog.fileUrl)
}
fileDialog.close()
}
onRejected: {
fileDialog.close()
}
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/DOtherSide

0 comments on commit 7ed5b0d

Please sign in to comment.