5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 12:20:48 +00:00

fix: gitlab solo acepta 200 caracteres en el título

This commit is contained in:
Sutty 2024-03-06 15:31:40 +00:00
parent 48defa9058
commit 6ea20a4d55

View file

@ -105,7 +105,7 @@ class GitlabNotifierJob < ApplicationJob
def title
@title ||= ''.dup.tap do |t|
t << "[#{exception.class}] " unless javascript?
t << exception.message
t << exception.message[0..200]
t << " [#{issue_data[:count]}]"
end
end