Skip to content

Commit

Permalink
fix: fix admin select bug
Browse files Browse the repository at this point in the history
  • Loading branch information
erfjab committed Oct 31, 2024
1 parent 57959a3 commit 1062423
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion routers/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async def user_create_status(
)


@router.callback_query(AdminSelectCallbacks.filter(F.just_one_inbound.is_(False)))
@router.callback_query(AdminSelectCallbacks.filter())
async def user_create_owner_select(
callback: CallbackQuery, callback_data: AdminSelectCallbacks, state: FSMContext
):
Expand Down
2 changes: 1 addition & 1 deletion utils/lang.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from enum import Enum

VERSION = "0.2.1"
VERSION = "0.2.2"
OWNER = "@ErfJabs"


Expand Down

0 comments on commit 1062423

Please sign in to comment.