This commit is contained in:
Dmitry Zuikov 2024-09-30 06:38:23 +03:00
parent 8d4fbddf10
commit c318cd14d0
1 changed files with 9 additions and 1 deletions

View File

@ -716,7 +716,15 @@ fixmeAttrNonEmpty a b = case (coerce a :: Text, coerce b :: Text) of
(_,_) -> b
fixmeDerivedFields :: Fixme -> Fixme
fixmeDerivedFields fx = fxEnd <> fx <> fxKey <> fxCo <> tag <> fxLno <> fxMisc <> fxTs
fixmeDerivedFields fx = do
fxEnd
<> fx
<> fxKey
<> fxCo
<> tag
<> fxLno
<> fxTs
<> fxMisc
where
email = HM.lookup "commiter-email" (fixmeAttr fx)
& maybe mempty (\x -> " <" <> x <> ">")