fdfd
This commit is contained in:
parent
3c8e8ea40c
commit
9a3739d077
1 changed files with 3 additions and 1 deletions
|
@ -496,9 +496,11 @@ class User(Base):
|
|||
@property
|
||||
@lazy
|
||||
def is_suspended(self):
|
||||
if self.unban_utc and self.unban_utc > time.time():
|
||||
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()))
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue