From 286c0e552d00f9449b32c58098028df4aad7a504 Mon Sep 17 00:00:00 2001 From: Erica Z Date: Fri, 1 Nov 2024 13:55:47 +0100 Subject: [PATCH] some of those are optional --- src/subsonic/schema.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/subsonic/schema.rs b/src/subsonic/schema.rs index cf9a262..1710033 100644 --- a/src/subsonic/schema.rs +++ b/src/subsonic/schema.rs @@ -42,8 +42,8 @@ pub struct Child { pub title: String, pub album: String, pub artist: String, - pub track: u32, - pub year: u32, + pub track: Option, + pub year: Option, pub starred: Option<()>, pub duration: u64, pub play_count: Option,