Skip to content

Commit

Permalink
One more sanitize invocation I missed and John noted
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Aug 21, 2024
1 parent 15047f1 commit 6b57e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solidation/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def to_markdown(self) -> str:
(p for p in self.open_prs if not p.draft), key=lambda x: x.created_at
)[: self.config.num_oldest_prs]:
age = now - ensure_aware(pr.created_at)
s += f"- [{pr.title}]({pr.html_url}) ({age.days} days)\n"
s += f"- [{sanitize_md(pr.title)}]({pr.html_url}) ({age.days} days)\n"

n_random_ip = min(self.config.max_random_issues, len(self.open_ip))
if n_random_ip:
Expand Down

0 comments on commit 6b57e0e

Please sign in to comment.