remotes/1693045480750635534/spooky-22
Aevann1 2021-10-18 18:09:15 +02:00
parent 88b8358880
commit bc042d59cc
2 changed files with 5 additions and 6 deletions

View File

@ -208,7 +208,6 @@ class Submission(Base):
if comment: self.__dict__["replies"] = [comment]
else: self.__dict__["replies"] = pinned_comment + index.get(self.fullname, [])
g.db.commit()
return render_template(template,
v=v,
p=self,

View File

@ -496,11 +496,11 @@ class User(Base):
@property
@lazy
def is_suspended(self):
if self.unban_utc and self.unban_utc < time.time():
self.is_banned = 0
self.unban_utc = 0
g.db.add(self)
g.db.commit()
# if self.unban_utc and self.unban_utc < time.time():
# self.is_banned = 0
# self.unban_utc = 0
# g.db.add(self)
# g.db.commit()
return (self.is_banned and (not self.unban_utc or self.unban_utc > time.time()))