fix: wrong calc

pull/21/head
db0 2023-09-12 01:27:55 +02:00
parent 209263e66c
commit 96c4987706
1 changed files with 0 additions and 1 deletions

View File

@ -323,7 +323,6 @@ def get_reports(
if report_activity is not None:
query = query.filter(Report.report_activity == report_activity.name
)
page = page - 1
if page < 1:
page = 1
return query.order_by(Report.created.desc()).offset(10 * page).limit(10).all()