Fix unused Engine bugs (#1064)

This commit is contained in:
Ethan Koenig
2017-02-26 21:16:35 -05:00
committed by Lunny Xiao
parent 50918084bb
commit 136e6beb0f
2 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ func NewAttachment(name string, buf []byte, file multipart.File) (_ *Attachment,
func getAttachmentByUUID(e Engine, uuid string) (*Attachment, error) {
attach := &Attachment{UUID: uuid}
has, err := x.Get(attach)
has, err := e.Get(attach)
if err != nil {
return nil, err
} else if !has {