Fix casing error in Attachment, should fix 'Attachment doesn't exist' errors

pull/343/head
Daniel García 6 years ago
parent 1d7f704754
commit 6f52104324
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A

@ -85,6 +85,8 @@ impl Attachment {
}
pub fn find_by_id(id: &str, conn: &DbConn) -> Option<Self> {
let id = id.to_lowercase();
attachments::table
.filter(attachments::id.eq(id))
.first::<Self>(&**conn)

Loading…
Cancel
Save