diff --git a/couchpotato/core/event.py b/couchpotato/core/event.py index 4842aad..3a5b900 100644 --- a/couchpotato/core/event.py +++ b/couchpotato/core/event.py @@ -57,8 +57,9 @@ def fireEvent(name, *args, **kwargs): # Do options for x in options: try: + val = kwargs[x] del kwargs[x] - options[x] = True + options[x] = val except: pass e = events[name]