diff options
author | metamuffin <metamuffin@disroot.org> | 2023-06-14 20:38:19 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-06-14 20:38:19 +0200 |
commit | 7cc616e965b4a4eb5a8c759c7230f9d8d01821c0 (patch) | |
tree | a6f13f69c6e3035bdbcc2bb87f6de66cb98d7911 /remuxer | |
parent | 90fb37475efa3269bfc7313457e25489193c882c (diff) | |
download | jellything-7cc616e965b4a4eb5a8c759c7230f9d8d01821c0.tar jellything-7cc616e965b4a4eb5a8c759c7230f9d8d01821c0.tar.bz2 jellything-7cc616e965b4a4eb5a8c759c7230f9d8d01821c0.tar.zst |
generalize share props between item and dir
Diffstat (limited to 'remuxer')
-rw-r--r-- | remuxer/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs index 5352b14..e531f06 100644 --- a/remuxer/src/lib.rs +++ b/remuxer/src/lib.rs @@ -116,7 +116,7 @@ impl RemuxerContext { output.write_tag(&MatroskaTag::Info(Master::Collected(vec![ MatroskaTag::TimestampScale(1_000_000), MatroskaTag::Duration(iteminfo.duration * 1000.0), - MatroskaTag::Title(iteminfo.title), + MatroskaTag::Title(iteminfo.title.clone()), MatroskaTag::MuxingApp("jellyremux".to_string()), MatroskaTag::WritingApp("jellything".to_string()), ])))?; |