From b565fb10238237bd03ec8640d2877298e9238e32 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Thu, 5 Mar 2026 19:18:27 -0500 Subject: [PATCH] Fix wrong TMDB field for person profile images in search Person results from multi-search were using poster_path instead of profile_path, causing missing profile images. Co-Authored-By: Claude Opus 4.6 --- app/api/search/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/search/route.ts b/app/api/search/route.ts index f30f857..745573b 100644 --- a/app/api/search/route.ts +++ b/app/api/search/route.ts @@ -86,7 +86,7 @@ export async function GET(req: NextRequest) { type: "person" as const, title: r.name ?? "Unknown", posterPath: null, - profilePath: tmdbImageUrl(r.poster_path, "w185"), + profilePath: tmdbImageUrl(r.profile_path, "w185"), overview: "", releaseDate: null, popularity: r.popularity,