mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-09 19:56:18 +00:00
update series resolver
This commit is contained in:
@@ -187,7 +187,6 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool DisplayCollectionsView { get; set; }
|
||||
public string[] LocalNetworkAddresses { get; set; }
|
||||
public string[] CodecsUsed { get; set; }
|
||||
public string[] Migrations { get; set; }
|
||||
public bool EnableChannelView { get; set; }
|
||||
public bool EnableExternalContentInSuggestions { get; set; }
|
||||
|
||||
@@ -203,7 +202,6 @@ namespace MediaBrowser.Model.Configuration
|
||||
{
|
||||
LocalNetworkAddresses = new string[] { };
|
||||
CodecsUsed = new string[] { };
|
||||
Migrations = new string[] { };
|
||||
ImageExtractionTimeoutMs = 0;
|
||||
EnableLocalizedGuids = true;
|
||||
PathSubstitutions = new PathSubstitution[] { };
|
||||
|
||||
@@ -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