diff --git a/CHANGELOG.md b/CHANGELOG.md index d24ee1f2..b12797c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.3.14 (2016-03-29) + +* Fix: Regression for missing notify_action for script notifications. +* Fix: Typo for home stats cards in the settings. + + ## v1.3.13 (2016-03-27) * Fix: Only mask strings longer than 5 characters in logs. diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index c09f9d88..ee43194e 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -269,13 +269,13 @@ available_notification_agents = sorted(notifiers.available_notification_agents()
  • diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index feecd7aa..f29db073 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -487,7 +487,7 @@ def send_notification(agent_id, subject, body, notify_action, **kwargs): slackClient.notify(message=body, event=subject) elif agent_id == 15: scripts = Scripts() - scripts.notify(message=body, subject=subject, **kwargs) + scripts.notify(message=body, subject=subject, notify_action=notify_action, **kwargs) elif agent_id == 16: facebook = FacebookNotifier() facebook.notify(subject=subject, message=body, **kwargs) diff --git a/plexpy/version.py b/plexpy/version.py index 9b6265e2..3d93fffb 100644 --- a/plexpy/version.py +++ b/plexpy/version.py @@ -1,2 +1,2 @@ PLEXPY_VERSION = "master" -PLEXPY_RELEASE_VERSION = "1.3.13" +PLEXPY_RELEASE_VERSION = "1.3.14"