Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/notes/update/base.rb')
-rw-r--r--app/graphql/mutations/notes/update/base.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/app/graphql/mutations/notes/update/base.rb b/app/graphql/mutations/notes/update/base.rb
index 4c6df2776cc..09b814d903e 100644
--- a/app/graphql/mutations/notes/update/base.rb
+++ b/app/graphql/mutations/notes/update/base.rb
@@ -24,12 +24,9 @@ module Mutations
note_params(note, args)
).execute(note)
- # It's possible for updated_note to be `nil`, in the situation
- # where the note is deleted within `Notes::UpdateService` due to
- # the body of the note only containing Quick Actions.
{
- note: updated_note&.reset,
- errors: updated_note ? errors_on_object(updated_note) : []
+ note: updated_note.destroyed? ? nil : updated_note.reset,
+ errors: updated_note.destroyed? ? [] : errors_on_object(updated_note)
}
end