5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-07 01:47:04 +00:00

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

(cherry picked from commit 6ea20a4d55)
This commit is contained in:
Sutty 2024-03-06 15:31:40 +00:00 committed by f
parent 053ec5674f
commit 4081f62ad1
No known key found for this signature in database

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