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",
"version": "1.3.5",
"version": "1.3.6",
"description": "Aniworld Anime Download Manager - Web Frontend",
"type": "module",
"scripts": {

View File

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