Compare commits

...

2 Commits

Author SHA1 Message Date
dbaf80e941 chore: bump version 2026-06-03 21:49:02 +02:00
4fc597c5de fix: disable startup media scan
Skip incomplete series check on server startup to reduce
startup time. Can be re-enabled by restoring _check_media_scan_status().
2026-06-03 21:47:55 +02:00
3 changed files with 5 additions and 6 deletions

View File

@@ -1 +1 @@
v1.3.5 v1.3.6

View File

@@ -1,6 +1,6 @@
{ {
"name": "aniworld-web", "name": "aniworld-web",
"version": "1.3.5", "version": "1.3.6",
"description": "Aniworld Anime Download Manager - Web Frontend", "description": "Aniworld Anime Download Manager - Web Frontend",
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@@ -544,10 +544,9 @@ async def _check_media_scan_status() -> bool:
Returns: Returns:
bool: True if media scan was completed, False otherwise bool: True if media scan was completed, False otherwise
""" """
return await _check_scan_status( # DISABLED: Always return True to skip startup scan
check_method=lambda svc, db: svc.is_initial_media_scan_completed(db), # To re-enable, change to: return await _check_scan_status(...)
scan_type="media" return True
)
async def _mark_media_scan_completed() -> None: async def _mark_media_scan_completed() -> None: