aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Issue.hs')
-rw-r--r--app/Issue.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Issue.hs b/app/Issue.hs
index 66047b6..72fbad3 100644
--- a/app/Issue.hs
+++ b/app/Issue.hs
@@ -39,7 +39,7 @@ fromMatch result match =
}
else Nothing
where
- text = stripComments result.file_type match.text
+ text = stripComments result.file_type (T.strip match.text)
lns = T.lines text
title = takeWhile (not . isEmpty) lns
description = drop (length title + 1) lns