mirror of
https://github.com/TeamPiped/piped-rust-sdk.git
synced 2024-08-14 23:56:06 +00:00
Fixed crash with negative video amount
This commit is contained in:
parent
800484a90a
commit
1dfe4371e1
1 changed files with 1 additions and 1 deletions
|
@ -141,6 +141,6 @@ pub struct ChannelSearchItem {
|
||||||
pub url: String,
|
pub url: String,
|
||||||
pub description: Option<String>,
|
pub description: Option<String>,
|
||||||
pub subscribers: i32,
|
pub subscribers: i32,
|
||||||
pub videos: u32,
|
pub videos: i32,
|
||||||
pub verified: bool,
|
pub verified: bool,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue