Parcourir la source

Fix WWW-Authenticate header typo

master
JustAnotherArchivist il y a 3 ans
Parent
révision
0542c63e33
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      irclog.py

+ 1
- 1
irclog.py Voir le fichier

@@ -859,7 +859,7 @@ class WebServer:
authHeader = request.headers.get('Authorization')
if not authHeader or authHeader != auth:
self.logger.info(f'Bad request {id(request)}: authentication failed: {authHeader!r} != {auth}')
raise aiohttp.web.HTTPUnauthorized(headers = {'WWW-Authenticate': f'Basic, realm="{request.match_info["path"]}"'})
raise aiohttp.web.HTTPUnauthorized(headers = {'WWW-Authenticate': f'Basic realm="{request.match_info["path"]}"'})

async def _channel_handler(self, request, handler):
await self._check_valid_channel(request)


Chargement…
Annuler
Enregistrer