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,10 +24,10 @@ following = DATABASE.get('relay-list', [])
for inbox in following:
if urllib.parse.urlsplit(inbox).hostname in AP_CONFIG['blocked_instances']:
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']:
following.remove(inbox)
DATABASE['relay-list'] = following
if 'actors' in DATABASE: