Fix QR code not showing up for localhost address

This commit is contained in:
JonnyWong16 2020-09-14 08:51:22 -07:00
parent 60bdf1d1ce
commit 38ccd37867
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -6075,6 +6075,12 @@ class WebInterface(object):
whois_info = helpers.whois_lookup(ip_address)
return whois_info
@cherrypy.expose
@cherrypy.tools.json_out()
@requireAuth(member_of("admin"))
def get_plexpy_url(self, **kwargs):
return helpers.get_plexpy_url()
@cherrypy.expose
@cherrypy.tools.json_out()
@requireAuth(member_of("admin"))