Update sweebridge.py
This commit is contained in:
parent
6a2ff601c3
commit
8686bfcafe
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue