>= 2 instead of >= 1

pull/90/head
Aevann 2023-01-20 06:35:23 +02:00
parent 2511054947
commit a33bbc8fc2
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ def speak(data, v):
admin_ids = [x[0] for x in g.db.query(User.id).filter(
User.id != v.id,
User.admin_level >= 1,
User.admin_level >= 2,
).all()]
push_notif(admin_ids, title, notifbody, url)