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:
Diffstat (limited to 'src/components/ChatView.vue')
-rw-r--r--src/components/ChatView.vue3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/ChatView.vue b/src/components/ChatView.vue
index 105fafa88..2a76975db 100644
--- a/src/components/ChatView.vue
+++ b/src/components/ChatView.vue
@@ -59,7 +59,6 @@
<script>
import MessagesList from './MessagesList/MessagesList'
import NewMessageForm from './NewMessageForm/NewMessageForm'
-import { processFiles } from '../utils/fileUpload'
import { CONVERSATION } from '../constants'
export default {
@@ -140,7 +139,7 @@ export default {
// Create a unique id for the upload operation
const uploadId = new Date().getTime()
// Uploads and shares the files
- processFiles(files, this.token, uploadId)
+ this.$store.dispatch('initialiseUpload', { files, token: this.token, uploadId })
},
setScrollStatus(payload) {