mirror of https://github.com/voidlizard/hbs2
bugfix
This commit is contained in:
parent
8d4fbddf10
commit
c318cd14d0
|
@ -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 <> ">")
|
||||
|
|
Loading…
Reference in New Issue