Don't hash 4chan
This commit is contained in:
parent
ae2004090c
commit
b8a08f9615
|
@ -114,6 +114,12 @@
|
||||||
<option value="dis">Discord</option>
|
<option value="dis">Discord</option>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if params.source == '4ch' %}
|
||||||
|
<option selected value="4ch">4chan</option>
|
||||||
|
{% else %}
|
||||||
|
<option value="4ch">4chan</option>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if params.source == None %}
|
{% if params.source == None %}
|
||||||
<option selected value="all">All</option>
|
<option selected value="all">All</option>
|
||||||
{% elif params.source == 'all' %}
|
{% elif params.source == 'all' %}
|
||||||
|
|
|
@ -171,6 +171,9 @@ def hash_list(user, data, hash_keys=False):
|
||||||
else:
|
else:
|
||||||
data_copy = type(data)((data))
|
data_copy = type(data)((data))
|
||||||
for index, item in enumerate(data_copy):
|
for index, item in enumerate(data_copy):
|
||||||
|
if "src" in item:
|
||||||
|
if item["src"] in settings.SAFE_SOURCES:
|
||||||
|
continue
|
||||||
if isinstance(item, dict):
|
if isinstance(item, dict):
|
||||||
for key, value in list(item.items()):
|
for key, value in list(item.items()):
|
||||||
if (
|
if (
|
||||||
|
|
Loading…
Reference in New Issue