Hotfix: Convert Hash to JSON before sending to Sentry
This commit is contained in:
@ -84,7 +84,7 @@ class PyLintAdapter < TestingFrameworkAdapter
|
|||||||
|
|
||||||
def self.get_t(key, default)
|
def self.get_t(key, default)
|
||||||
translation = I18n.t(key, locale: :de, default: default)
|
translation = I18n.t(key, locale: :de, default: default)
|
||||||
Raven.capture_message({key: key, default: default}) if translation == default
|
Raven.capture_message({key: key, default: default}.to_json) if translation == default
|
||||||
translation
|
translation
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user