Skip to content

Commit

Permalink
🐛 bug fix in admin
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRomanovizc committed Jul 5, 2024
1 parent 3b6dd50 commit 1d05f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/dating/create_forms_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def monitoring_questionnaire(call: CallbackQuery, state: FSMContext) -> No
user_offsets = storage.get("user_offsets", dict())
user_limits = storage.get("user_limits", dict())
offset = user_offsets.get(telegram_id, 0)
limit = user_limits.get(telegram_id, 10000)
limit = user_limits.get(telegram_id, 100)
user_list = await get_next_user(telegram_id, monitoring=True, offset=offset, limit=limit)

if user_list:
Expand Down

0 comments on commit 1d05f41

Please sign in to comment.