fix: accept music album playlist response without header

This commit is contained in:
ThetaDev 2022-11-30 21:11:33 +01:00
parent 8097873fe1
commit 38bc12f695
3 changed files with 74 additions and 37 deletions

View file

@ -11,7 +11,7 @@ use super::{ContentsRenderer, Tab};
#[serde(rename_all = "camelCase")]
pub(crate) struct MusicPlaylist {
pub contents: Contents,
pub header: Header,
pub header: Option<Header>,
}
#[derive(Debug, Deserialize)]