got tags backwards
This commit is contained in:
parent
602277f7e6
commit
aff4b7d89e
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ makeTags nsfw sfwTags nsfwTags =
|
||||||
where
|
where
|
||||||
tagList = map makeTag tags
|
tagList = map makeTag tags
|
||||||
makeTag t = [b|<li>$*t|]
|
makeTag t = [b|<li>$*t|]
|
||||||
tags = List.nub $ if nsfw then sfwTags else sfwTags <> nsfwTags
|
tags = List.nub $ if nsfw then sfwTags <> nsfwTags else sfwTags
|
||||||
|
|
||||||
extLinks :: Bool -> [Link] -> Builder
|
extLinks :: Bool -> [Link] -> Builder
|
||||||
extLinks nsfw allLinks =
|
extLinks nsfw allLinks =
|
||||||
|
|
Loading…
Reference in a new issue