Browse Source

Merge pull request #7144 from DaftHonk/develop

Correct Emby API Call for Movies update
pull/7145/head
Ruud Burger 9 years ago
committed by GitHub
parent
commit
0cdfb472c6
  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