diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-26 05:11:13 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-26 05:11:13 +0100 |
commit | 9e88a60734a53a6a2ce55fc174e2f2fd8e073eaa (patch) | |
tree | a083095e651ee6959f1f844af6e9256ce1f93ce6 /stream/src/lib.rs | |
parent | 45a1ac348e2ca9cd4e05ee33d88e4dafc5336126 (diff) | |
download | jellything-9e88a60734a53a6a2ce55fc174e2f2fd8e073eaa.tar jellything-9e88a60734a53a6a2ce55fc174e2f2fd8e073eaa.tar.bz2 jellything-9e88a60734a53a6a2ce55fc174e2f2fd8e073eaa.tar.zst |
jvtt works in player
Diffstat (limited to 'stream/src/lib.rs')
-rw-r--r-- | stream/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/src/lib.rs b/stream/src/lib.rs index 833af3e..906e638 100644 --- a/stream/src/lib.rs +++ b/stream/src/lib.rs @@ -42,7 +42,7 @@ pub fn stream_head(spec: &StreamSpec) -> StreamHead { StreamFormat::JhlsIndex => StreamHead { content_type: "application/jellything-seekindex+json", range_supported: false }, StreamFormat::Webvtt => StreamHead { content_type: "text/vtt", range_supported: false }, StreamFormat::Snippet => StreamHead { content_type: webm_or_mkv, range_supported: false }, - StreamFormat::Jvtt => StreamHead { content_type: "applcation/jellything-vtt+json", range_supported: false }, + StreamFormat::Jvtt => StreamHead { content_type: "application/jellything-vtt+json", range_supported: false }, } } |