From c92aa91aa7e2624f36171943220d271d3d4ab13f Mon Sep 17 00:00:00 2001 From: Dean Gardiner Date: Mon, 29 Jul 2013 21:07:50 +1200 Subject: [PATCH] Corrected notify() force parameter default. --- couchpotato/core/notifications/plex/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/notifications/plex/main.py b/couchpotato/core/notifications/plex/main.py index f9746a09..962e0b87 100755 --- a/couchpotato/core/notifications/plex/main.py +++ b/couchpotato/core/notifications/plex/main.py @@ -166,8 +166,8 @@ class Plex(Notification): return successful == total - def notify(self, message='', data={}, listener=None, forceUpdate=True): - self.updateClients(forceUpdate) + def notify(self, message='', data={}, listener=None, force=False): + self.updateClients(force) http_result = self.notify_http(message, data, listener) json_result = self.notify_json(message, data, listener)