Skip to content
Snippets Groups Projects
Commit f5c44a99 authored by Mal Reynolds's avatar Mal Reynolds
Browse files

Update Global Blacklist API URL

parent 9e5364fc
No related branches found
No related tags found
1 merge request!4Update Global Blacklist API URL
......@@ -40,7 +40,7 @@ class Mutes:
def load(self):
"""Reload all accounts from irredeemables endpoint and global lists."""
self.accounts = set(_read_url(self.url).decode('utf8').split())
jsn = _read_url('https://hive-blacklist.herokuapp.com/blacklists')
jsn = _read_url('https://blacklist.usehive.com/blacklists')
self.blist = set(json.loads(jsn))
self.blist_map = dict()
log.warning("%d muted, %d blacklisted", len(self.accounts), len(self.blist))
......@@ -64,7 +64,7 @@ class Mutes:
if name not in inst.blist_map:
out = []
if name in inst.blist:
url = 'https://hive-blacklist.herokuapp.com/user/' + name
url = 'https://blacklist.usehive.com/user/' + name
lists = json.loads(_read_url(url))
out.extend(lists['blacklisted'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment