From 28d1f632199c0bef98f2eaa7dd9091aebaf06901 Mon Sep 17 00:00:00 2001 From: Chris Rhodes Date: Fri, 8 Jan 2016 10:05:48 -0800 Subject: [PATCH] Missed one --- message.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message.go b/message.go index 6a349bd..63e7d3e 100644 --- a/message.go +++ b/message.go @@ -17,7 +17,7 @@ import ( // A Message stores all data related to a specific Discord message. type Message struct { ID string `json:"id"` - Author User `json:"author"` + Author *User `json:"author"` Content string `json:"content"` Attachments []*Attachment `json:"attachments"` Tts bool `json:"tts"`