fix: post images with as correct arraybuffer to marka

This commit is contained in:
Max Richter
2025-10-31 18:12:24 +01:00
parent ab9c0f96e0
commit d7037e1ca1
2 changed files with 2 additions and 3 deletions

View File

@@ -37,7 +37,6 @@ export const handler: Handlers = {
if (posterPath) {
const poster = await tmdb.getMoviePoster(posterPath);
const extension = fileExtension(posterPath);
finalPath = `movies/images/${safeFileName(name)}_cover.${extension}`;
await createResource(finalPath, poster);
}