mirror of
https://github.com/Radarr/Radarr
synced 2025-01-04 06:23:32 +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()
|
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)
|
.WriteSentryWarn("UnknownVideoFormat", mediaInfo.ContainerFormat, mediaInfo.VideoFormat, videoCodecID)
|
||||||
.Write();
|
.Write();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue