fixed preview url arg in topic

This commit is contained in:
Kentai Radiquum 2024-12-29 04:08:14 +05:00
parent d57612e5a1
commit 48458fa71d
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -113,7 +113,7 @@ class MatrixPreview:
if parsed_args["tg_url"]: if parsed_args["tg_url"]:
message.append(f"Telegram: {parsed_args['tg_url']}") message.append(f"Telegram: {parsed_args['tg_url']}")
if parsed_args["preview_url"]: if parsed_args["preview_url"]:
topic.append(f"Preview: {parsed_args['tg_url']}") topic.append(f"Preview: {parsed_args['preview_url']}")
topic = " | ".join(topic) topic = " | ".join(topic)
message = "\n".join(message) message = "\n".join(message)