Allow movies scraped from the scene scraper dialog to include the director field (#4757)

This commit is contained in:
Maista
2024-04-17 02:30:17 +02:00
committed by GitHub
parent ec6acab2f4
commit 157b2e7bae

View File

@@ -10,6 +10,7 @@ export const scrapedMovieToCreateInput = (toCreate: GQL.ScrapedMovie) => {
back_image: toCreate.back_image,
synopsis: toCreate.synopsis,
date: toCreate.date,
director: toCreate.director,
// #788 - convert duration and rating to the correct type
duration: TextUtils.timestampToSeconds(toCreate.duration),
studio_id: toCreate.studio?.stored_id,