Update link regex pattern
This commit is contained in:
parent
8f5e839ae9
commit
acb5cc5c5e
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ config = TaskConfig.from_yaml()
|
||||||
config.reddit["user_agent"] = config.reddit.get("user_agent", DEFAULT_USER_AGENT)
|
config.reddit["user_agent"] = config.reddit.get("user_agent", DEFAULT_USER_AGENT)
|
||||||
running = []
|
running = []
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
image_link = re.compile(r"(.*preview\.redd\.it\/)(.*\..*)\?")
|
image_link = re.compile(r"https?://(?:www)?\.?preview\.redd\.it\/(.*\..*)\?.*")
|
||||||
|
|
||||||
|
|
||||||
async def post_embeds(sub: Sub, post: Submission, reddit: Reddit) -> Optional[List[Embed]]:
|
async def post_embeds(sub: Sub, post: Submission, reddit: Reddit) -> Optional[List[Embed]]:
|
||||||
|
@ -76,7 +76,7 @@ async def post_embeds(sub: Sub, post: Submission, reddit: Reddit) -> Optional[Li
|
||||||
if post.spoiler:
|
if post.spoiler:
|
||||||
content += "||"
|
content += "||"
|
||||||
content += f"\n\n[View this post]({url})"
|
content += f"\n\n[View this post]({url})"
|
||||||
content = image_link.sub(content, "https://i.redd.it/\2")
|
content = "\n".join(image_link.sub(r"https://i.redd.it/\1", x) for x in content.split("\n"))
|
||||||
|
|
||||||
if not images and not content:
|
if not images and not content:
|
||||||
logger.debug(f"Post {post.id} had neither content nor images?")
|
logger.debug(f"Post {post.id} had neither content nor images?")
|
||||||
|
|
Loading…
Add table
Reference in a new issue