mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 22:12:24 +01:00
Fix crash due to relations not supporting is_
This commit is contained in:
parent
7eca06a097
commit
fb13272e6c
@ -131,7 +131,7 @@ def tags():
|
||||
|
||||
only_no_tags = isYes(request.args.get("no_tags"))
|
||||
if only_no_tags:
|
||||
query = query.filter(Package.tags.is_(None))
|
||||
query = query.filter(Package.tags==None)
|
||||
|
||||
tags = Tag.query.order_by(db.asc(Tag.title)).all()
|
||||
|
||||
|
@ -27,7 +27,7 @@ from app.tasks import celery
|
||||
def delete_inactive_users():
|
||||
threshold = datetime.datetime.now() - datetime.timedelta(hours=5)
|
||||
|
||||
users = User.query.filter(User.is_active == False, User.packages.is_(None), User.forum_topics.is_(None),
|
||||
users = User.query.filter(User.is_active == False, User.packages == None, User.forum_topics == None,
|
||||
User.created_at <= threshold, User.rank == UserRank.NOT_JOINED).all()
|
||||
for user in users:
|
||||
db.session.delete(user)
|
||||
|
Loading…
Reference in New Issue
Block a user