remotes/1693045480750635534/spooky-22
Aevann1 2021-10-02 21:07:30 +02:00
parent 01f417a277
commit f3b24c948c
2 changed files with 3 additions and 4 deletions

View File

@ -262,8 +262,7 @@ def get_domain(s):
domain_list = tuple(list(domain_list))
doms = [x for x in g.db.query(BannedDomain).options(lazyload('*')).filter(
BannedDomain.domain.in_(domain_list)).all()]
doms = [x for x in g.db.query(BannedDomain).options(lazyload('*')).filter(BannedDomain.domain.in_(domain_list)).all()]
if not doms:
return None

View File

@ -121,7 +121,7 @@
{% if render_replies %}
{% if level<7 %}
{% if level<10 %}
<div id="replies-of-{{c.id}}" class="">
{% set standalone=False %}
{% for reply in replies %}
@ -456,7 +456,7 @@
{% if render_replies %}
{% if level<7 %}
{% if level<10 %}
<div id="replies-of-{{c.id}}">
{% for reply in replies %}
{{single_comment(reply, level=level+1)}}