diff --git a/relay/default.py b/relay/default.py index 638e0c7..b3a1836 100644 --- a/relay/default.py +++ b/relay/default.py @@ -7,9 +7,9 @@ host = CONFIG['ap']['host'] note = CONFIG['note'] inboxes = DATABASE.get('relay-list', []) -targets = '
'.join([urllib.parse.urlsplit(target).hostname for target in inboxes]) async def default(request): + targets = '
'.join([urllib.parse.urlsplit(target).hostname for target in inboxes]) return aiohttp.web.Response( status=200, content_type="text/html",