#1186 Renamed USER_IN_THREAD to USER_IN_TOPIC

This commit is contained in:
Alex Root Junior 2023-07-01 21:53:34 +03:00
parent d29b18da8c
commit 066d16b522
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
3 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ The strategy can be changed in dispatcher:
from aiogram.fsm.strategy import FSMStrategy
...
dispatcher = Dispatcher(
fsm_strategy=FSMStrategy.USER_IN_THREAD,
fsm_strategy=FSMStrategy.USER_IN_TOPIC,
storage=..., # Any persistent storage
)