Fixed the issue sending movies to Radarr #1513

Fixed typo #1524
This commit is contained in:
Jamie.Rees 2017-10-03 08:06:27 +01:00
commit 43a78f0e3c
3 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ namespace Ombi.Notifications.Agents
try
{
var a = settings.Token;
var b = settings.WebookId;
var b = settings.WebHookId;
}
catch (IndexOutOfRangeException)
{
@ -164,7 +164,7 @@ namespace Ombi.Notifications.Agents
};
}
await Api.SendMessage(discordBody, settings.WebookId, settings.Token);
await Api.SendMessage(discordBody, settings.WebHookId, settings.Token);
}
catch (Exception e)
{