update: update the nfo scan
Local Docker Build (Dev) / build-dev (push) Successful in 5s

This commit is contained in:
2025-10-26 13:42:50 -04:00
parent d50ac88237
commit d933ac7585
2 changed files with 15 additions and 4 deletions
+5 -4
View File
@@ -1594,16 +1594,17 @@ async def get_episodes_missing_nfo_dateadded(dependencies: dict):
return {
"success": True,
"total_episodes_checked": len(episodes_missing), # Close enough for UI
"total_movies_checked": len(movies_missing),
"total_items_checked": result['total_missing'],
"total_episodes_checked": result.get('total_tv_files_checked', 0),
"total_movies_checked": result.get('total_movie_files_checked', 0),
"total_items_checked": result.get('total_tv_files_checked', 0) + result.get('total_movie_files_checked', 0),
"missing_dateadded_count": result['total_missing'],
"items": all_missing[:50], # Limit display to first 50
"debug_info": {
"scan_method": "core_container_filesystem",
"core_container_response": "success",
"episodes_missing": result['episodes_missing'],
"movies_missing": result['movies_missing']
"movies_missing": result['movies_missing'],
"core_response_keys": list(result.keys())
}
}
else: