Skip to content

Commit

Permalink
Ensure correct overlay is used
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jun 3, 2022
1 parent 67504b6 commit 95cec13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_image(self, style: str = "default", *, animated=False) -> Path:
url = ""
if utils.urls.schema(style):
url = style
style = utils.text.fingerprint(url)
style = utils.text.fingerprint(f"{url}{self.overlay}")

self.directory.mkdir(exist_ok=True)
paths: list[Path] = []
Expand Down

0 comments on commit 95cec13

Please sign in to comment.