From 54fda3d6484af45bd4388d0f274dfc74f597c298 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 28 Apr 2016 23:42:53 -0700 Subject: [PATCH] Fixed: Updating Emby Library Closes #1267 --- .../Notifications/MediaBrowser/MediaBrowserProxy.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowserProxy.cs b/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowserProxy.cs index f9bd25f07..084ee0a10 100644 --- a/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowserProxy.cs +++ b/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowserProxy.cs @@ -37,6 +37,7 @@ namespace NzbDrone.Core.Notifications.MediaBrowser { var path = string.Format("/Library/Series/Updated?tvdbid={0}", tvdbId); var request = BuildRequest(path, settings); + request.Headers.Add("Content-Length", "0"); ProcessRequest(request, settings); }