aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-11-07 22:02:37 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-11-07 22:02:48 +0100
commit60fb967e2de7ab290f46d4a84fd920dfe8d264b0 (patch)
tree7b154c025a7540502fbe19485f8f5ad10e4c8bf5 /app/Issue.hs
parent8ee9303043fafe916fe59e43895a1753882d5139 (diff)
fix issue title
This regression had been introduced in d9400635bcb28674c8510d71aa6eed94194bf669.
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 2ada47b..e6515a9 100644
--- a/app/Issue.hs
+++ b/app/Issue.hs
@@ -96,7 +96,7 @@ stripIssueMarkers text =
case [marker | marker <- issueMarkers, T.isPrefixOf marker text] of
(marker : _) ->
W.first (marker :) . stripIssueMarkers $
- T.drop (T.length marker) text
+ T.stripStart (T.drop (T.length marker) text)
[] ->
([], text)