diff options
Diffstat (limited to 'net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch')
-rw-r--r-- | net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch b/net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch new file mode 100644 index 000000000000..25856801af7c --- /dev/null +++ b/net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch @@ -0,0 +1,25 @@ +From 31eec0d37bcb962afb1b0f0974411dae728dcd9f Mon Sep 17 00:00:00 2001 +From: Justin Bronder <jsbronder@gmail.com> +Date: Sat, 5 Aug 2017 17:38:03 -0400 +Subject: [PATCH 4/4] cfg: disable NtfOSD by default + +--- + sabnzbd/cfg.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/sabnzbd/cfg.py b/sabnzbd/cfg.py +index baf5678..f9646fb 100644 +--- a/sabnzbd/cfg.py ++++ b/sabnzbd/cfg.py +@@ -270,7 +270,7 @@ acenter_prio_queue_done = OptionBool('acenter', 'acenter_prio_queue_done', True) + acenter_prio_other = OptionBool('acenter', 'acenter_prio_other', False) + + # [ntfosd] +-ntfosd_enable = OptionBool('ntfosd', 'ntfosd_enable', not sabnzbd.WIN32 and not sabnzbd.DARWIN) ++ntfosd_enable = OptionBool('ntfosd', 'ntfosd_enable', False) + ntfosd_prio_startup = OptionBool('ntfosd', 'ntfosd_prio_startup', True) + ntfosd_prio_download = OptionBool('ntfosd', 'ntfosd_prio_download', False) + ntfosd_prio_pp = OptionBool('ntfosd', 'ntfosd_prio_pp', False) +-- +2.13.0 + |