diff --git a/sabnzbd/growler.py b/sabnzbd/growler.py index 94c528d..6d61582 100644 --- a/sabnzbd/growler.py +++ b/sabnzbd/growler.py @@ -318,7 +318,8 @@ def send_notification_center(title, msg, gtype): tool = ncenter_path() if tool: try: - command = [tool, '-title', title, '-message', msg, '-group', Tx(NOTIFICATION.get(gtype, 'other'))] + command = [tool, '-title', title, '-message', msg, '-group', Tx(NOTIFICATION.get(gtype, 'other')), + '-sender', 'org.sabnzbd.team'] proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=False) output = proc.stdout.read() proc.wait()