From d516182fc65ee4084f2c6b66f0e2351859a3c98d Mon Sep 17 00:00:00 2001 From: DaftHonk Date: Fri, 9 Dec 2016 14:41:36 -0400 Subject: [PATCH] Correct Emby API Call for Movies update Fixes issue of emby notification not triggering a movie library update --- couchpotato/core/notifications/emby.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/emby.py b/couchpotato/core/notifications/emby.py index 30254f0..baba521 100644 --- a/couchpotato/core/notifications/emby.py +++ b/couchpotato/core/notifications/emby.py @@ -18,7 +18,7 @@ class Emby(Notification): apikey = self.conf('apikey') host = cleanHost(host) - url = '%semby/Library/Series/Updated' % (host) + url = '%semby/Library/Movies/Updated' % (host) values = {} data = urllib.urlencode(values)