Skip to content

Commit

Permalink
Merge pull request #14 from mizaki/gm_image_varnames
Browse files Browse the repository at this point in the history
Reflect CT GenericMetadata image var name changes
  • Loading branch information
mizaki authored Dec 20, 2023
2 parents 0ce0f5b + 32f06b4 commit 650f0c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metron_talker/metron.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def _map_comic_issue_to_metadata(self, issue: Issue, series: Series) -> GenericM
series=utils.xlate(series.name),
)

md.cover_image = issue.image
md._cover_image = issue.image

series_type = -1
if hasattr(series, "series_type"):
Expand Down Expand Up @@ -530,7 +530,7 @@ def _map_comic_issue_to_metadata(self, issue: Issue, series: Series) -> GenericM

if hasattr(issue, "variants"):
for alt in issue.variants:
md.alternate_images.append(alt.image)
md._alternate_images.append(alt.image)

if hasattr(issue, "characters"):
for character in issue.characters:
Expand Down

0 comments on commit 650f0c9

Please sign in to comment.