Skip to content

Commit

Permalink
Fix wrong api field name (rename SkipEventsEvent::stop to `SkipEven…
Browse files Browse the repository at this point in the history
…tsEvent::end`)
  • Loading branch information
bytedream committed Mar 9, 2024
1 parent e283cce commit 97bd5ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/media/anime/impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ struct VideoIntroResult {
#[cfg_attr(feature = "__test_strict", serde(deny_unknown_fields))]
#[cfg_attr(not(feature = "__test_strict"), serde(default))]
pub struct SkipEventsEvent {
/// Start of the event.
/// Start of the event in seconds.
pub start: u32,
/// End of the event.
pub stop: u32,
/// End of the event in seconds.
pub end: u32,

#[cfg(feature = "__test_strict")]
approver_id: crate::StrictValue,
Expand Down

0 comments on commit 97bd5ee

Please sign in to comment.