Fix Card entity to take a number for width x height

master
Paul Woolcock 5 years ago
parent 73cf194167
commit b4af698e01
  1. 4
      src/entities/card.rs

@ -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>,
} }

Loading…
Cancel
Save