From 8ac5bf7829c360c5aeba9b3ff8d1d48c42599bd1 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Thu, 26 Oct 2017 20:56:04 +0100 Subject: [PATCH] Fixed discord #1623 --- src/Ombi.Notifications/NotificationMessageCurlys.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi.Notifications/NotificationMessageCurlys.cs b/src/Ombi.Notifications/NotificationMessageCurlys.cs index 85d3840b2..a3ba590b7 100644 --- a/src/Ombi.Notifications/NotificationMessageCurlys.cs +++ b/src/Ombi.Notifications/NotificationMessageCurlys.cs @@ -22,7 +22,7 @@ namespace Ombi.Notifications Overview = req.Overview; Year = req.ReleaseDate.Year.ToString(); PosterImage = req.RequestType == RequestType.Movie ? - $"https://image.tmdb.org/t/p/w300/{req.PosterPath}" : req.PosterPath; + $"https://image.tmdb.org/t/p/w300{req.PosterPath}" : req.PosterPath; } public void Setup(ChildRequests req, CustomizationSettings s)