Fix error handling logic in example

We only get to this line if response.data is nil, and the condition indicates response.errors was supposed to be referenced.
This commit is contained in:
Daniel Beck 2018-06-27 12:10:45 +02:00 коммит произвёл GitHub
Родитель 5210f3d837
Коммит d2853bf8c9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -58,7 +58,7 @@ class IssuesController < ApplicationController
# errors object will report these.
elsif response.errors.any?
# "Could not resolve to a node with the global id of 'abc'"
message = response.data.errors[:issue].join(", ")
message = response.errors[:issue].join(", ")
render status: :internal_server_error, plain: message
end
end