From 3e996d284d9e172738caaa097c68da948b4530b6 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 25 Sep 2016 22:05:02 -0700 Subject: [PATCH] Disable posters by default for all notification agents --- plexpy/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plexpy/config.py b/plexpy/config.py index 25384e5e..e1e05ad4 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -146,7 +146,7 @@ _CONFIG_DEFINITIONS = { 'FACEBOOK_TOKEN': (str, 'Facebook', ''), 'FACEBOOK_GROUP': (str, 'Facebook', ''), 'FACEBOOK_INCL_PMSLINK': (int, 'Facebook', 0), - 'FACEBOOK_INCL_POSTER': (int, 'Facebook', 1), + 'FACEBOOK_INCL_POSTER': (int, 'Facebook', 0), 'FACEBOOK_INCL_SUBJECT': (int, 'Facebook', 1), 'FACEBOOK_ON_PLAY': (int, 'Facebook', 0), 'FACEBOOK_ON_STOP': (int, 'Facebook', 0), @@ -462,7 +462,7 @@ _CONFIG_DEFINITIONS = { 'SLACK_CHANNEL': (str, 'Slack', ''), 'SLACK_ICON_EMOJI': (str, 'Slack', ''), 'SLACK_INCL_PMSLINK': (int, 'Slack', 0), - 'SLACK_INCL_POSTER': (int, 'Slack', 1), + 'SLACK_INCL_POSTER': (int, 'Slack', 0), 'SLACK_INCL_SUBJECT': (int, 'Slack', 1), 'SLACK_USERNAME': (str, 'Slack', ''), 'SLACK_ON_PLAY': (int, 'Slack', 0), @@ -540,7 +540,7 @@ _CONFIG_DEFINITIONS = { 'TWITTER_ACCESS_TOKEN_SECRET': (str, 'Twitter', ''), 'TWITTER_CONSUMER_KEY': (str, 'Twitter', ''), 'TWITTER_CONSUMER_SECRET': (str, 'Twitter', ''), - 'TWITTER_INCL_POSTER': (int, 'Twitter', 1), + 'TWITTER_INCL_POSTER': (int, 'Twitter', 0), 'TWITTER_INCL_SUBJECT': (int, 'Twitter', 1), 'TWITTER_ON_PLAY': (int, 'Twitter', 0), 'TWITTER_ON_STOP': (int, 'Twitter', 0),