diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-20 12:13:20 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-20 12:13:20 +0100 |
commit | 730353601db9818d148c85bfe1ecb119abaab7cc (patch) | |
tree | 0e3deafdac53ebc612a04b3631e5cf286c825291 /common | |
parent | 3086e768ab4e64e47a50d7f6a71a815c4f110bd3 (diff) | |
download | jellything-730353601db9818d148c85bfe1ecb119abaab7cc.tar jellything-730353601db9818d148c85bfe1ecb119abaab7cc.tar.bz2 jellything-730353601db9818d148c85bfe1ecb119abaab7cc.tar.zst |
cleanup yesterdays mess
Diffstat (limited to 'common')
-rw-r--r-- | common/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs index a58dc48..5387679 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -47,7 +47,7 @@ pub struct NodePublic { #[serde(default)] pub children: Vec<String>, #[serde(default)] pub tagline: Option<String>, #[serde(default)] pub description: Option<String>, - #[serde(default)] pub release_date: Option<i64>, + #[serde(default)] pub release_date: Option<i64>, // in unix millis #[serde(default)] pub index: Option<usize>, #[serde(default)] pub media: Option<MediaInfo>, #[serde(default)] pub ratings: BTreeMap<Rating, f64>, |