Update sweebridge.py

This commit is contained in:
Nova Cat 2025-01-08 14:20:14 -08:00
parent 6a2ff601c3
commit 8686bfcafe

View file

@ -115,7 +115,7 @@ def parse_content(text:str, platform:int, target:str):
# Links workaround for Guilded
temp = ""
parsed = text.split(" ")
for index, i in parsed.enumerate():
for index, i in enumerate(parsed):
if "http://" in i or "https://" in i:
parsed[index] = f"[{i}]({i})"
temp = " ".join(parsed)