Skip to content

Commit

Permalink
修复 ciddvdid 并存时错误模块名导致无法调用 normal crawlers 的问题 (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiotOnAGE authored Dec 19, 2024
1 parent 12b4eb8 commit 46acbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javsp/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def wrapper(parser, info: MovieInfo, retry):
for i in all_info.values():
i.dvdid = None
for i in Cfg().crawler.selection.normal:
all_info[i] = MovieInfo(movie.dvdid)
all_info[i.value] = MovieInfo(movie.dvdid)
thread_pool = []
for mod_partial, info in all_info.items():
mod = f"javsp.web.{mod_partial}"
Expand Down

0 comments on commit 46acbdd

Please sign in to comment.