aboutsummaryrefslogtreecommitdiffstats
path: root/worker/notmuch/worker.go
diff options
context:
space:
mode:
authorinwit <inwit@sindominio.net>2022-11-04 19:08:06 +0100
committerRobin Jarry <robin@jarry.cc>2022-11-09 21:16:37 +0100
commit931564e8743fee58890b85b9bb5fa628d05f7342 (patch)
treecdef8df9acc59fa24eaf635e12fd263bf504d3c0 /worker/notmuch/worker.go
parent7ce091bc13eef9e59aef3c357b85cd918a8594b3 (diff)
downloadaerc-931564e8743fee58890b85b9bb5fa628d05f7342.tar.gz
notmuch: correct a typo in error message
Signed-off-by: inwit <inwit@sindominio.net> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'worker/notmuch/worker.go')
-rw-r--r--worker/notmuch/worker.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/worker/notmuch/worker.go b/worker/notmuch/worker.go
index 3b0ee829..0acd4e78 100644
--- a/worker/notmuch/worker.go
+++ b/worker/notmuch/worker.go
@@ -767,7 +767,7 @@ func (w *worker) handleCopyMessages(msg *types.CopyMessages) error {
folders, _ := w.store.FolderMap()
dest, ok := folders[msg.Destination]
if !ok {
- return fmt.Errorf("Can only move file to a maildir folder")
+ return fmt.Errorf("Can only copy file to a maildir folder")
}
for _, uid := range msg.Uids {