mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Fix incorrect reachability websocket event key
This commit is contained in:
parent
e248c13c15
commit
4430c14374
1 changed files with 1 additions and 1 deletions
|
@ -551,7 +551,7 @@ class ReachabilityHandler(object):
|
||||||
def __init__(self, data):
|
def __init__(self, data):
|
||||||
self.data = data
|
self.data = data
|
||||||
|
|
||||||
self.is_reachable = self.data.get('reachable', False)
|
self.is_reachable = self.data.get('reachability', False)
|
||||||
|
|
||||||
def remote_access_enabled(self):
|
def remote_access_enabled(self):
|
||||||
pms_connect = pmsconnect.PmsConnect()
|
pms_connect = pmsconnect.PmsConnect()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue