mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-25 09:54:11 +01:00
Fixed: Code block for Release name on import Discord notification
This commit is contained in:
parent
ca27a80b15
commit
fb0fa53304
1 changed files with 1 additions and 1 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue