From 1a31ca3e33e5a983f7d815d25e9a7c8d500f6df7 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 20 May 2020 22:47:01 +1000 Subject: [PATCH] Set performers/tags/studios in parser (#563) --- ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx b/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx index aa0eea8e6..b95308361 100644 --- a/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx +++ b/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx @@ -60,6 +60,10 @@ export class SceneParserResult { this.title.setValue(result.title ?? undefined); this.date.setValue(result.date ?? undefined); this.rating.setValue(result.rating ?? undefined); + + this.performers.setValue(result.performer_ids ?? undefined); + this.tags.setValue(result.tag_ids ?? undefined); + this.studio.setValue(result.studio_id ?? undefined); } // returns true if any of its fields have set == true