mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 21:04:22 +00:00
Fixed: Video format exception using split string object
This commit is contained in:
parent
fa2c4725be
commit
daee348795
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ public static string FormatVideoCodec(MediaInfoModel mediaInfo, string sceneName
|
|||
}
|
||||
|
||||
Logger.Debug()
|
||||
.Message("Unknown video format: '{0}' in '{1}'.", string.Join(", ", videoFormat, videoCodecID, videoProfile, videoCodecLibrary), sceneName)
|
||||
.Message("Unknown video format: '{0}' in '{1}'.", string.Join(", ", mediaInfo.VideoFormat, videoCodecID, videoProfile, videoCodecLibrary), sceneName)
|
||||
.WriteSentryWarn("UnknownVideoFormat", mediaInfo.ContainerFormat, mediaInfo.VideoFormat, videoCodecID)
|
||||
.Write();
|
||||
|
||||
|
|
Loading…
Reference in a new issue