summaryrefslogtreecommitdiff
path: root/Omni
diff options
context:
space:
mode:
Diffstat (limited to 'Omni')
-rw-r--r--Omni/Agent/Worker.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Agent/Worker.hs b/Omni/Agent/Worker.hs
index 3edfbca..dabf45c 100644
--- a/Omni/Agent/Worker.hs
+++ b/Omni/Agent/Worker.hs
@@ -330,7 +330,7 @@ formatCommitMessage task ampOutput =
where
cleanSubject s =
let stripped = Text.dropWhileEnd (`elem` ['.', ':', '!', '?', ' ']) s
- truncated = if Text.length stripped > 72 then Text.take 69 stripped <> "..." else stripped
+ truncated = if Text.length stripped > 52 then Text.take 49 stripped <> "..." else stripped
capitalized = case Text.uncons truncated of
Just (c, rest) -> Text.cons (toUpper c) rest
Nothing -> truncated