about summary refs log tree commit diff stats
path: root/worker
diff options
context:
space:
mode:
Diffstat (limited to 'worker')
-rw-r--r--worker/imap/worker.go3
-rw-r--r--worker/types/messages.go3
2 files changed, 4 insertions, 2 deletions
diff --git a/worker/imap/worker.go b/worker/imap/worker.go
index 4381e22..f6685c1 100644
--- a/worker/imap/worker.go
+++ b/worker/imap/worker.go
@@ -163,8 +163,9 @@ func (w *IMAPWorker) handleImapUpdate(update client.Update) {
 	case *client.MailboxUpdate:
 		status := update.Mailbox
 		w.worker.PostMessage(&types.DirectoryInfo{
-			ReadOnly: status.ReadOnly,
 			Flags:    status.Flags,
+			Name:     status.Name,
+			ReadOnly: status.ReadOnly,
 
 			Exists: int(status.Messages),
 			Recent: int(status.Recent),
diff --git a/worker/types/messages.go b/worker/types/messages.go
index 27937ee..02a3119 100644
--- a/worker/types/messages.go
+++ b/worker/types/messages.go
@@ -83,8 +83,9 @@ type Directory struct {
 
 type DirectoryInfo struct {
 	Message
-	ReadOnly bool
 	Flags    []string
+	Name     string
+	ReadOnly bool
 
 	Exists, Recent, Unseen int
 }