From bed1cd8fb50128a4e8381cbaadb73d5fdffd350e Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Mon, 23 Mar 2020 10:28:01 -0700 Subject: [PATCH] Fix notification grouping not enabled by default on new install (cherry picked from commit d5917f89f03d50c45af83fbac7e7a974fa0e2b33) --- plexpy/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/config.py b/plexpy/config.py index 68b03a54..5534908e 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -345,7 +345,7 @@ _CONFIG_DEFINITIONS = { 'NOTIFY_CONSECUTIVE': (int, 'Monitoring', 1), 'NOTIFY_GROUP_RECENTLY_ADDED_GRANDPARENT': (int, 'Monitoring', 0), 'NOTIFY_GROUP_RECENTLY_ADDED_PARENT': (int, 'Monitoring', 1), - 'NOTIFY_GROUP_RECENTLY_ADDED': (int, 'Monitoring', 0), + 'NOTIFY_GROUP_RECENTLY_ADDED': (int, 'Monitoring', 1), 'NOTIFY_UPLOAD_POSTERS': (int, 'Monitoring', 0), 'NOTIFY_RECENTLY_ADDED': (int, 'Monitoring', 0), 'NOTIFY_RECENTLY_ADDED_DELAY': (int, 'Monitoring', 60),