Fix Card entity to take a number for width x height

This commit is contained in:
Paul Woolcock
2019-04-25 06:32:07 -04:00
parent 73cf194167
commit b4af698e01
+2 -2
View File
@@ -22,7 +22,7 @@ pub struct Card {
/// OEmbed data /// OEmbed data
html: Option<String>, html: Option<String>,
/// OEmbed data /// OEmbed data
width: Option<String>, width: Option<u64>,
/// OEmbed data /// OEmbed data
height: Option<String>, height: Option<u64>,
} }