Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
saecki committed Aug 28, 2023
1 parent d95b263 commit 6b77b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atom/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ pub(crate) fn read_tag(reader: &mut (impl Read + Seek), cfg: &ReadConfig) -> cra
let chapter_track = moov.trak.iter().find(|a| a.tkhd.id == *c_id);

let Some(chapter_track) = chapter_track else {
continue // TODO maybe log warning: referenced chapter track not found
continue; // TODO maybe log warning: referenced chapter track not found
};

let mdia = chapter_track.mdia.as_ref();
Expand Down

0 comments on commit 6b77b11

Please sign in to comment.