mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 00:32:58 -07:00
Fix error loading removed notification agents configs
This commit is contained in:
parent
060dff0162
commit
2b0e7daf7c
1 changed files with 0 additions and 6 deletions
|
@ -80,8 +80,6 @@ AGENT_IDS = {'growl': 0,
|
||||||
'prowl': 1,
|
'prowl': 1,
|
||||||
'xbmc': 2,
|
'xbmc': 2,
|
||||||
'plex': 3,
|
'plex': 3,
|
||||||
'nma': 4,
|
|
||||||
'pushalot': 5,
|
|
||||||
'pushbullet': 6,
|
'pushbullet': 6,
|
||||||
'pushover': 7,
|
'pushover': 7,
|
||||||
'osx': 8,
|
'osx': 8,
|
||||||
|
@ -358,10 +356,6 @@ def get_agent_class(agent_id=None, config=None):
|
||||||
return XBMC(config=config)
|
return XBMC(config=config)
|
||||||
elif agent_id == 3:
|
elif agent_id == 3:
|
||||||
return PLEX(config=config)
|
return PLEX(config=config)
|
||||||
elif agent_id == 4:
|
|
||||||
return NMA(config=config)
|
|
||||||
elif agent_id == 5:
|
|
||||||
return PUSHALOT(config=config)
|
|
||||||
elif agent_id == 6:
|
elif agent_id == 6:
|
||||||
return PUSHBULLET(config=config)
|
return PUSHBULLET(config=config)
|
||||||
elif agent_id == 7:
|
elif agent_id == 7:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue