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

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"))