From 70d0e8d8dd8c25013dafd4af6bea51b20b2caf1f Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sat, 17 May 2025 16:00:37 +0100 Subject: [PATCH] Group Managa and Comics Signed-off-by: Marcus Noble --- pkg/storygraph/client.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/storygraph/client.go b/pkg/storygraph/client.go index 79dc232..511b214 100644 --- a/pkg/storygraph/client.go +++ b/pkg/storygraph/client.go @@ -198,6 +198,10 @@ func getTags(decs iter.Seq[*html.Node]) []string { case "fantasy": tags["Fantasy"] = true case "comics": + fallthrough + case "graphic novels": + fallthrough + case "manga": tags["Comics"] = true } }