fix api being blocked for /? pages
This commit is contained in:
parent
05b47a9180
commit
7ad916f116
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ class LBRYDaemon(jsonrpc.JSONRPC):
|
||||||
log.warning("Attempted api call from %s", origin)
|
log.warning("Attempted api call from %s", origin)
|
||||||
return server.failure
|
return server.failure
|
||||||
|
|
||||||
if referer not in [None, 'http://localhost:5279/']:
|
if referer is not None and not referer.startswith('http://localhost:5279/'):
|
||||||
log.warning("Attempted api call from %s", referer)
|
log.warning("Attempted api call from %s", referer)
|
||||||
return server.failure
|
return server.failure
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue