Skip to content

Commit

Permalink
fix(comicinfo): generate valid title #130
Browse files Browse the repository at this point in the history
  • Loading branch information
metafates committed Nov 3, 2022
1 parent 6e91e01 commit db59ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion constant/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package constant

const (
Mangal = "mangal"
Version = "4.0.1"
Version = "4.0.2"
UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36"
)
2 changes: 1 addition & 1 deletion source/chapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func (c *Chapter) ComicInfo() *ComicInfo {
XmlnsXsd: "http://www.w3.org/2001/XMLSchema",
XmlnsXsi: "http://www.w3.org/2001/XMLSchema-instance",

Title: c.Manga.Name,
Title: c.Name,
Series: c.Manga.Name,
Number: int(c.Index),
Web: c.URL,
Expand Down

0 comments on commit db59ec9

Please sign in to comment.