From 6d1297a85f5fd8067a4f2479b32be075e41ce41d Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 5 May 2013 13:31:26 +0200 Subject: [PATCH] Don't show double message when refreshing movie --- couchpotato/core/plugins/movie/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/movie/main.py b/couchpotato/core/plugins/movie/main.py index 4b595dc..1ce68f0 100644 --- a/couchpotato/core/plugins/movie/main.py +++ b/couchpotato/core/plugins/movie/main.py @@ -315,7 +315,7 @@ class MoviePlugin(Plugin): for title in movie.library.titles: if title.default: default_title = title.title - fireEvent('notify.frontend', type = 'movie.busy.%s' % id, data = True, message = 'Updating "%s"' % default_title) + fireEvent('notify.frontend', type = 'movie.busy.%s' % id, data = True) fireEventAsync('library.update', identifier = movie.library.identifier, default_title = default_title, force = True, on_complete = self.createOnComplete(id))