1
0
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:
Taloth Saldono 2017-07-19 10:34:33 +02:00
parent fbcc0b76bf
commit f293b9a44e

View File

@ -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;
}