feat: implement episode range parsing and enhance search functionality with improved filtering options

This commit is contained in:
Benexl
2025-07-24 21:19:18 +03:00
parent ae3a59d116
commit 67a174158d
9 changed files with 585 additions and 114 deletions

View File

@@ -124,7 +124,9 @@ class Session:
else:
logger.warning("Failed to continue from history. No sessions found")
if not self._history:
if history:
self._history = history
else:
self._history.append(State(menu_name=MenuName.MAIN))
try: