properly create 'relay-list' in db

This commit is contained in:
Izalia Mae 2020-11-22 00:50:57 -05:00
parent a15d734218
commit 89990331d5

View file

@ -24,11 +24,11 @@ following = DATABASE.get('relay-list', [])
for inbox in following: for inbox in following:
if urllib.parse.urlsplit(inbox).hostname in AP_CONFIG['blocked_instances']: if urllib.parse.urlsplit(inbox).hostname in AP_CONFIG['blocked_instances']:
following.remove(inbox) following.remove(inbox)
DATABASE['relay-list'] = following
elif AP_CONFIG['whitelist_enabled'] is True and urllib.parse.urlsplit(inbox).hostname not in AP_CONFIG['whitelist']: elif AP_CONFIG['whitelist_enabled'] is True and urllib.parse.urlsplit(inbox).hostname not in AP_CONFIG['whitelist']:
following.remove(inbox) following.remove(inbox)
DATABASE['relay-list'] = following
DATABASE['relay-list'] = following
if 'actors' in DATABASE: if 'actors' in DATABASE:
DATABASE.pop('actors') DATABASE.pop('actors')