handle subtitles

This commit is contained in:
Max Bradbury 2023-05-04 19:39:22 +01:00
parent c311f3c2cb
commit 8c0d9a7236
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ fn handle_dir(path: PathBuf) {
"m4v" => { handle_video( inode) }
"mkv" => { handle_video( inode) }
"mp4" => { handle_video( inode) }
"srt" => { handle_video( inode) }
// todo other documents
_ => { println!("Not sure what to do with file: {:?}.", inode.path()); }
}