From 2ed7a741ff9eca1dd3fe9e94cdcfe4f365b74ff2 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Sun, 16 Apr 2023 09:53:41 -0500 Subject: directory: remove attributes field Remove the unused field Attributes Signed-off-by: Tim Culverhouse Acked-by: Robin Jarry --- worker/imap/list.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'worker/imap') diff --git a/worker/imap/list.go b/worker/imap/list.go index b1bc65a1..07aa2971 100644 --- a/worker/imap/list.go +++ b/worker/imap/list.go @@ -24,8 +24,7 @@ func (imapw *IMAPWorker) handleListDirectories(msg *types.ListDirectories) { imapw.worker.PostMessage(&types.Directory{ Message: types.RespondTo(msg), Dir: &models.Directory{ - Name: mbox.Name, - Attributes: mbox.Attributes, + Name: mbox.Name, }, }, nil) } -- cgit