From b4af698e01a42662210add85432570606f1d29f6 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Thu, 25 Apr 2019 06:32:07 -0400 Subject: [PATCH] Fix Card entity to take a number for width x height --- src/entities/card.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entities/card.rs b/src/entities/card.rs index 9849964..ec9471c 100644 --- a/src/entities/card.rs +++ b/src/entities/card.rs @@ -22,7 +22,7 @@ pub struct Card { /// OEmbed data html: Option, /// OEmbed data - width: Option, + width: Option, /// OEmbed data - height: Option, + height: Option, }