mirror of
https://github.com/TeamPiped/piped-rust-sdk.git
synced 2024-08-14 23:56:06 +00:00
Merge pull request #5 from Tubefeeder/fix-some-parsing-errors
Fix some errors parsing certain subscriptions
This commit is contained in:
commit
23f987f100
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ pub struct Channel {
|
|||
pub id: String,
|
||||
pub name: String,
|
||||
pub avatar_url: String,
|
||||
pub banner_url: String,
|
||||
pub banner_url: Option<String>,
|
||||
pub description: String,
|
||||
pub nextpage: Option<String>,
|
||||
pub nextbody: Option<String>,
|
||||
|
@ -21,7 +21,7 @@ pub struct Playlist {
|
|||
pub banner_url: Option<String>,
|
||||
pub uploader: String,
|
||||
pub uploader_url: String,
|
||||
pub uploader_avatar: String,
|
||||
pub uploader_avatar: Option<String>,
|
||||
pub videos: i32,
|
||||
pub nextpage: Option<String>,
|
||||
pub nextbody: Option<String>,
|
||||
|
|
Loading…
Reference in a new issue