Browse Source

Correct Emby API Call for Movies update

Fixes issue of emby notification not triggering a movie library update
pull/7144/head
DaftHonk 9 years ago
committed by GitHub
parent
commit
d516182fc6
  1. 2
      couchpotato/core/notifications/emby.py

2
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)

Loading…
Cancel
Save