diff options
author | inwit <inwit@sindominio.net> | 2022-11-04 19:08:06 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-11-09 21:16:37 +0100 |
commit | 931564e8743fee58890b85b9bb5fa628d05f7342 (patch) | |
tree | cdef8df9acc59fa24eaf635e12fd263bf504d3c0 | |
parent | 7ce091bc13eef9e59aef3c357b85cd918a8594b3 (diff) | |
download | aerc-931564e8743fee58890b85b9bb5fa628d05f7342.tar.gz |
notmuch: correct a typo in error message
Signed-off-by: inwit <inwit@sindominio.net>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
-rw-r--r-- | worker/notmuch/worker.go | 2 |
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 { |