mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 11:31:41 +00:00
fix: gitlab solo acepta 200 caracteres en el título
This commit is contained in:
parent
48defa9058
commit
6ea20a4d55
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue