mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 21:51:14 -07:00
Stop capitalizing the action name in notifications
This commit is contained in:
parent
486ddb55b2
commit
f63b5514f3
1 changed files with 2 additions and 2 deletions
|
@ -420,7 +420,7 @@ def build_media_notify_params(notify_action=None, session=None, timeline=None, *
|
|||
'server_name': server_name,
|
||||
'server_uptime': server_uptime,
|
||||
'server_version': server_times.get('version',''),
|
||||
'action': notify_action.split('on_')[-1].title(),
|
||||
'action': notify_action.split('on_')[-1],
|
||||
'datestamp': arrow.now().format(date_format),
|
||||
'timestamp': arrow.now().format(time_format),
|
||||
# Stream parameters
|
||||
|
@ -548,7 +548,7 @@ def build_server_notify_params(notify_action=None, **kwargs):
|
|||
'server_name': server_name,
|
||||
'server_uptime': server_uptime,
|
||||
'server_version': server_times.get('version',''),
|
||||
'action': notify_action.split('on_')[-1].title(),
|
||||
'action': notify_action.split('on_')[-1],
|
||||
'datestamp': arrow.now().format(date_format),
|
||||
'timestamp': arrow.now().format(time_format),
|
||||
# Plex Media Server update parameters
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue