Actually fix login

This commit is contained in:
Tulir Asokan 2018-12-08 14:12:33 +02:00
parent 67a4e85406
commit 5775560933
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
__version__ = "0.1.0.dev11" __version__ = "0.1.0.dev13"

View File

@ -28,8 +28,8 @@ log = logging.getLogger("maubot.server")
@web.middleware @web.middleware
async def auth(request: web.Request, handler: Handler) -> web.Response: async def auth(request: web.Request, handler: Handler) -> web.Response:
subpath = request.path.lstrip(get_config()["server.base_path"]) subpath = request.path[len(get_config()["server.base_path"]):]
if subpath.startswith("auth/") or subpath == "logs": if subpath.startswith("/auth/") or subpath == "/logs":
return await handler(request) return await handler(request)
err = check_token(request) err = check_token(request)
if err is not None: if err is not None: