Skip to content

Commit

Permalink
fix(actor):actor name error
Browse files Browse the repository at this point in the history
  • Loading branch information
fhyoga committed Sep 23, 2019
1 parent eff9de6 commit 70fd234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scraper/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const saveAsserts = async (model, file) => {
downloadImg(json.art.poster._text, `${file.wpath + file.title}-poster.jpg`),
downloadImg(json.art.fanart._text, `${file.wpath + file.title}-fanart.jpg`),
json.actor.map(v =>
downloadImg(v.thumb._text, `${file.wpath}.actors/${v.name}.jpg`)
downloadImg(v.thumb._text, `${file.wpath}.actors/${v.name._text}.jpg`)
)
])
.then(() => model)
Expand Down

0 comments on commit 70fd234

Please sign in to comment.