mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
parent
7c2a230f87
commit
4bb0735565
1 changed files with 10 additions and 0 deletions
|
@ -108,6 +108,11 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|||
return "FLAC";
|
||||
}
|
||||
|
||||
if (audioFormat.Trim().EqualsIgnoreCase("MLP"))
|
||||
{
|
||||
return "MLP";
|
||||
}
|
||||
|
||||
if (audioFormat.Trim().EqualsIgnoreCase("mp3"))
|
||||
{
|
||||
return "MP3";
|
||||
|
@ -193,6 +198,11 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|||
return "MP3";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("MLP"))
|
||||
{
|
||||
return "MLP";
|
||||
}
|
||||
|
||||
if (audioFormat.EqualsIgnoreCase("DTS"))
|
||||
{
|
||||
return "DTS";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue