From 88356bac6d293b09c269ef1214651c8dba1d04b3 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 3 Dec 2025 12:25:45 +1100 Subject: [PATCH] Fix typos --- internal/api/resolver_mutation_performer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/api/resolver_mutation_performer.go b/internal/api/resolver_mutation_performer.go index 82a7df118..3d0b3e77a 100644 --- a/internal/api/resolver_mutation_performer.go +++ b/internal/api/resolver_mutation_performer.go @@ -554,7 +554,7 @@ func (r *mutationResolver) PerformerMerge(ctx context.Context, input PerformerMe // ensure destination is not in source list if slices.Contains(srcIDs, destID) { - return nil, errors.New("destination scene cannot be in source list") + return nil, errors.New("destination performer cannot be in source list") } var values *models.PerformerPartial @@ -597,7 +597,7 @@ func (r *mutationResolver) PerformerMerge(ctx context.Context, input PerformerMe sources, err := qb.FindMany(ctx, srcIDs) if err != nil { - return fmt.Errorf("finding source scenes: %w", err) + return fmt.Errorf("finding source performers: %w", err) } for _, src := range sources {