mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
Fixed: Added FLAC to MediaInfo renamer audio codecs.
This commit is contained in:
parent
fbcc0b76bf
commit
f293b9a44e
@ -74,6 +74,11 @@ public static string FormatAudioCodec(MediaInfoModel mediaInfo)
|
||||
return "DTS";
|
||||
}
|
||||
|
||||
if (audioFormat.Equals("FLAC", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "FLAC";
|
||||
}
|
||||
|
||||
Logger.Error("Unknown audio format: {0}", audioFormat);
|
||||
return audioFormat;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user