mirror of
https://github.com/stashapp/stash.git
synced 2026-05-09 05:05:29 +02:00
Fix error message
This commit is contained in:
parent
85a94cf578
commit
c69d1e78a4
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ func (r *mutationResolver) SceneCreate(ctx context.Context, input models.SceneCr
|
|||
}
|
||||
newScene.ProductionDate, err = translator.datePtr(input.ProductionDate)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("converting date: %w", err)
|
||||
return nil, fmt.Errorf("converting production date: %w", err)
|
||||
}
|
||||
newScene.StudioID, err = translator.intPtrFromString(input.StudioID)
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue