aboutsummaryrefslogtreecommitdiff
path: root/worker/types/messages.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-14 21:51:29 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-14 21:51:29 -0400
commit11f0a7267fd1a9d1c6dd55e1dc044b8ed639bbc0 (patch)
tree80e2456edadfdcd7c6a8e02ab4830c1139816174 /worker/types/messages.go
parent0f8b7a1203309ebec0dc78baf3f195671eadac2d (diff)
Implement message store side of message fetching
Diffstat (limited to 'worker/types/messages.go')
-rw-r--r--worker/types/messages.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/worker/types/messages.go b/worker/types/messages.go
index d44624d..3f1a39f 100644
--- a/worker/types/messages.go
+++ b/worker/types/messages.go
@@ -110,7 +110,7 @@ type DirectoryInfo struct {
type DirectoryContents struct {
Message
- Uids []uint64
+ Uids []uint32
}
type MessageInfo struct {
@@ -120,5 +120,5 @@ type MessageInfo struct {
InternalDate time.Time
Mail *mail.Message
Size uint32
- Uid uint64
+ Uid uint32
}