This commit is contained in:
nose
2025-12-01 14:42:30 -08:00
parent 6b9ed7d4ab
commit 89aa24961b
8 changed files with 565 additions and 51 deletions

8
CLI.py
View File

@@ -600,6 +600,10 @@ def _create_cmdlet_cli():
# Load config
config = _load_cli_config()
# Initialize cookies check for yt-dlp
from hydrus_health_check import initialize_cookies_check
initialize_cookies_check()
# Initialize debug logging if enabled
if config:
from helper.logger import set_debug
@@ -691,11 +695,13 @@ def _create_cmdlet_cli():
check_mpv_availability,
initialize_matrix_health_check,
initialize_hydrus_health_check,
initialize_local_library_scan
initialize_local_library_scan,
initialize_cookies_check
)
check_mpv_availability()
initialize_hydrus_health_check(config)
initialize_matrix_health_check(config)
initialize_cookies_check()
initialize_local_library_scan(config)
# --- Startup File Counts ---