mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 02:15:30 +01:00
Set performers/tags/studios in parser (#563)
This commit is contained in:
parent
5c68c70216
commit
1a31ca3e33
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue