mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 00:52:54 +02:00
One last mime type
This commit is contained in:
parent
bceac2ff26
commit
64f06c2a1b
1 changed files with 4 additions and 0 deletions
|
|
@ -125,6 +125,10 @@ namespace MediaBrowser.Common.Net
|
|||
{
|
||||
return "application/epub+zip";
|
||||
}
|
||||
if (ext.Equals(".cbz", StringComparison.OrdinalIgnoreCase) || ext.Equals(".cbr", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "application/x-cdisplay";
|
||||
}
|
||||
|
||||
// Type image
|
||||
if (ext.Equals(".gif", StringComparison.OrdinalIgnoreCase))
|
||||
|
|
|
|||
Loading…
Reference in a new issue