From d5917f89f03d50c45af83fbac7e7a974fa0e2b33 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 --- plexpy/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/config.py b/plexpy/config.py index 93e93a76..c8675d21 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -340,7 +340,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),