mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 13:31:42 +00:00
fix: no producir type error
This commit is contained in:
parent
5ec698366a
commit
d25937f536
1 changed files with 14 additions and 4 deletions
|
@ -16,7 +16,7 @@ class GitlabNotifierJob < ApplicationJob
|
|||
# @param [Hash] opciones de ExceptionNotifier
|
||||
def perform(exception, **options)
|
||||
@exception = exception
|
||||
@options = options
|
||||
@options = fix_options options
|
||||
@issue_data = { count: 1 }
|
||||
# Necesitamos saber si el issue ya existía
|
||||
@cached = false
|
||||
|
@ -88,10 +88,9 @@ class GitlabNotifierJob < ApplicationJob
|
|||
].join('/')
|
||||
end
|
||||
|
||||
# @return [Array]
|
||||
def errors
|
||||
return '' unless javascript?
|
||||
|
||||
options.dig(:data, :params, 'errors')
|
||||
options.dig(:data, :params, 'errors') || []
|
||||
end
|
||||
|
||||
# Define si es una excepción de javascript o local
|
||||
|
@ -288,4 +287,15 @@ class GitlabNotifierJob < ApplicationJob
|
|||
def url
|
||||
@url ||= request&.url || options.dig(:data, :params, 'context', 'url')
|
||||
end
|
||||
|
||||
# Define llaves necesarias
|
||||
#
|
||||
# @param :options [Hash]
|
||||
# @return [Hash]
|
||||
def fix_options(options)
|
||||
options[:data] ||= {}
|
||||
options[:data][:params] ||= {}
|
||||
|
||||
options
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue