Merge branch 'feature/always-update-displayed-instance-list' into 'master'

Rebuild the list of instances that use this relay every time it is requested

See merge request pleroma/relay!6
This commit is contained in:
kaniini 2018-12-27 18:49:12 +00:00
commit 950cd1e720

View file

@ -7,9 +7,9 @@ host = CONFIG['ap']['host']
note = CONFIG['note']
inboxes = DATABASE.get('relay-list', [])
targets = '<br>'.join([urllib.parse.urlsplit(target).hostname for target in inboxes])
async def default(request):
targets = '<br>'.join([urllib.parse.urlsplit(target).hostname for target in inboxes])
return aiohttp.web.Response(
status=200,
content_type="text/html",