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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-04-06 21:18:52 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-04-07 10:20:00 +0300
commit1e906b33c47950e2a1a1231b592c089e49c8185c (patch)
tree8139cdda309fa29bc4c3575a689cea8a2695a32c /src
parent12d31f8e07a149794440e5d286617fd1682a6625 (diff)
Fix outbox message deletion after send
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'src')
-rw-r--r--src/store/outbox/actions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/outbox/actions.js b/src/store/outbox/actions.js
index 0d95890a1..114d410b3 100644
--- a/src/store/outbox/actions.js
+++ b/src/store/outbox/actions.js
@@ -72,6 +72,6 @@ export default {
return
}
- commit('deleteMessage', id)
+ commit('deleteMessage', { id })
},
}