Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-30 23:50:45 +0300
committerJoas Schilling <coding@schilljs.com>2022-08-31 09:15:41 +0300
commita2eaf48bbd32ba8886dbfe485bdfa892a82fbfca (patch)
treeb5a5357c194285a864b3d9961997e11fdbf5e218 /src/components
parentbcf873e8a6be7546e99a46c97a574d615647b587 (diff)
Create in the Talk folder
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/NewMessageForm/NewMessageForm.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NewMessageForm/NewMessageForm.vue b/src/components/NewMessageForm/NewMessageForm.vue
index c3d62a70d..cee580881 100644
--- a/src/components/NewMessageForm/NewMessageForm.vue
+++ b/src/components/NewMessageForm/NewMessageForm.vue
@@ -651,7 +651,7 @@ export default {
// Create text file and share it to a conversation
async handleCreateTextFile() {
- let filePath = this.textFileTitle
+ let filePath = this.$store.getters.getAttachmentFolder() + '/' + this.textFileTitle.replace('/', '')
const fileTemplate = this.fileTemplateOptions[this.showTextFileDialog]
if (!filePath.endsWith(fileTemplate.extension)) {