1
0
mirror of https://github.com/Radarr/Radarr synced 2025-10-05 23:42:44 +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 @@ namespace NzbDrone.Core.Notifications.Discord
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";