diff --git a/src/Ombi.Notifications/Agents/SlackNotification.cs b/src/Ombi.Notifications/Agents/SlackNotification.cs index 6321ed3ae..7ff71f84f 100644 --- a/src/Ombi.Notifications/Agents/SlackNotification.cs +++ b/src/Ombi.Notifications/Agents/SlackNotification.cs @@ -42,7 +42,7 @@ namespace Ombi.Notifications.Agents try { var a = settings.Token; - var b = settings.Channel; + var b = settings.Team; var c = settings.Service; } catch (IndexOutOfRangeException) diff --git a/src/Ombi.Notifications/Interfaces/BaseNotification.cs b/src/Ombi.Notifications/Interfaces/BaseNotification.cs index c0c4c88f6..189d25cda 100644 --- a/src/Ombi.Notifications/Interfaces/BaseNotification.cs +++ b/src/Ombi.Notifications/Interfaces/BaseNotification.cs @@ -104,7 +104,7 @@ namespace Ombi.Notifications.Interfaces { if (type == RequestType.Movie) { - MovieRequest = await MovieRepository.GetAll().FirstOrDefaultAsync(x => x.Id == requestId); + MovieRequest = await MovieRepository.GetWithUser().FirstOrDefaultAsync(x => x.Id == requestId); MovieRequest.PosterPath = $"https://image.tmdb.org/t/p/w300/{MovieRequest.PosterPath}"; } else