Skip to content

Commit

Permalink
update scrape
Browse files Browse the repository at this point in the history
  • Loading branch information
godcong committed Oct 12, 2019
1 parent 5dc7672 commit bcadfb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grab_javbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (g *grabJavbus) Decode(msg *[]*Content) error {
*msg = append(*msg, &Content{
From: g.Name(),
Uncensored: detail.uncensored,
ID: detail.id,
ID: strings.ToUpper(detail.id),
Title: detail.title,
OriginalTitle: "",
Year: strconv.Itoa(detail.date.Year()),
Expand Down
2 changes: 1 addition & 1 deletion grab_javdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func (g *grabJavdb) Decode(msg *[]*Content) error {
*msg = append(*msg, &Content{
From: g.Name(),
Uncensored: detail.uncensored,
ID: detail.id,
ID: strings.ToUpper(detail.id),
Title: detail.title,
OriginalTitle: "",
Year: strconv.Itoa(detail.date.Year()),
Expand Down

0 comments on commit bcadfb5

Please sign in to comment.