fix: smart fix date issues
Local Docker Build (Dev) / build-dev (push) Successful in 4s

This commit is contained in:
2025-10-14 15:53:11 -04:00
parent 212e51e54f
commit 00f2b77bfb
2 changed files with 10 additions and 4 deletions
+1 -4
View File
@@ -454,14 +454,11 @@ async def get_movie_date_options(dependencies: dict, imdb_id: str):
if not movie:
raise HTTPException(status_code=404, detail="Movie not found")
# Debug logging to understand the data issue
# Debug logging (can be removed once Smart Fix is working)
print(f"🔍 DEBUG: Movie data for {imdb_id}:")
print(f" - released: {repr(movie.get('released'))}")
print(f" - dateadded: {repr(movie.get('dateadded'))}")
print(f" - source: {repr(movie.get('source'))}")
print(f" - path: {repr(movie.get('path'))}")
print(f" - has_video_file: {repr(movie.get('has_video_file'))}")
print(f" - last_updated: {repr(movie.get('last_updated'))}")
options = []