1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

Fixed: Code block for Release name on import Discord notification

This commit is contained in:
Qstick 2020-09-23 22:04:27 -04:00
parent ca27a80b15
commit fb0fa53304

View File

@ -193,7 +193,7 @@ public override void OnDownload(DownloadMessage message)
break;
case DiscordImportFieldType.Release:
discordField.Name = "Release";
discordField.Value = message.MovieFile.SceneName;
discordField.Value = string.Format("```{0}```", message.MovieFile.SceneName);
break;
case DiscordImportFieldType.Links:
discordField.Name = "Links";