forked from indymedia/epicyon
Improve handling of evil
parent
d55be4d497
commit
52ba22e7ad
4
utils.py
4
utils.py
|
@ -51,7 +51,9 @@ def domainPermitted(domain: str, federationList: []):
|
|||
return False
|
||||
|
||||
def urlPermitted(url: str, federationList: [],capability: str):
|
||||
if url.endswith('gab.com') or url.endswith('gabfed.com'):
|
||||
evilDomains=['gab.com','gabfed.com','spinster.xyz']
|
||||
for concentratedEvil in evilDomains:
|
||||
if url.endswith(concentratedEvil):
|
||||
return False
|
||||
if len(federationList)==0:
|
||||
return True
|
||||
|
|
Loading…
Reference in New Issue