mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 05:53:03 +03:00
update series resolver
This commit is contained in:
@@ -248,6 +248,22 @@ namespace MediaBrowser.Model.Net
|
||||
{
|
||||
return "audio/ac3";
|
||||
}
|
||||
if (StringHelper.EqualsIgnoreCase(ext, ".dsf"))
|
||||
{
|
||||
return "audio/dsf";
|
||||
}
|
||||
if (StringHelper.EqualsIgnoreCase(ext, ".m4b"))
|
||||
{
|
||||
return "audio/m4b";
|
||||
}
|
||||
if (StringHelper.EqualsIgnoreCase(ext, ".xsp"))
|
||||
{
|
||||
return "audio/xsp";
|
||||
}
|
||||
if (StringHelper.EqualsIgnoreCase(ext, ".dsp"))
|
||||
{
|
||||
return "audio/dsp";
|
||||
}
|
||||
|
||||
// Playlists
|
||||
if (StringHelper.EqualsIgnoreCase(ext, ".m3u8"))
|
||||
|
||||
Reference in New Issue
Block a user