Browse Source

Correct Emby API call

Change "Series" to "Movies" so that Emby searches the correct Library for added files.
pull/7143/head
DaftHonk 9 years ago
committed by GitHub
parent
commit
c73c7f4d8f
  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