summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2024-06-18 18:13:27 +0200
committerMaksim Sukharev <antreesy.web@gmail.com>2024-06-18 18:13:27 +0200
commit03bf2cbdf6202e3406b10c110dc126e747a7131f (patch)
treef171458c63f59ada84bb6c209b996ca49ff0970d /src
parent487443fb728e72447d1d98288eeea25aff0da552 (diff)
fix: pass returned promise instead of function
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/NewConversationDialog/NewConversationDialog.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NewConversationDialog/NewConversationDialog.vue b/src/components/NewConversationDialog/NewConversationDialog.vue
index f569912bf..7f2c53015 100644
--- a/src/components/NewConversationDialog/NewConversationDialog.vue
+++ b/src/components/NewConversationDialog/NewConversationDialog.vue
@@ -300,7 +300,7 @@ export default {
}
if (this.isAvatarEdited) {
- promises.push(this.$refs.setupPage.$refs.conversationAvatar.saveAvatar)
+ promises.push(this.$refs.setupPage.$refs.conversationAvatar.saveAvatar())
}
if (this.newConversation.description) {