From cbd29df52afcf07f84889674d8621cb8d0e7a813 Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 26 Apr 2013 16:27:36 +0200 Subject: [PATCH] Update to_go even if movie isn't found in manage. --- couchpotato/core/plugins/manage/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/couchpotato/core/plugins/manage/main.py b/couchpotato/core/plugins/manage/main.py index 51094899..3e791de1 100644 --- a/couchpotato/core/plugins/manage/main.py +++ b/couchpotato/core/plugins/manage/main.py @@ -185,6 +185,8 @@ class Manage(Plugin): # Add it to release and update the info fireEvent('release.add', group = group) fireEventAsync('library.update', identifier = identifier, on_complete = self.createAfterUpdate(folder, identifier)) + else: + self.in_progress[folder]['to_go'] = self.in_progress[folder]['to_go'] - 1 return addToLibrary