Fix text2bbcode mxp links

This commit is contained in:
ChrisLR 2025-02-11 10:36:31 -05:00 committed by GitHub
parent e76169681e
commit 27f5fd5a9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -705,7 +705,7 @@ class TextToBBCODEparser(TextToHTMLparser):
"""
cmd, text = [grp.replace('"', "\\"") for grp in match.groups()]
val = f"[mxp=send cmd={cmd}]{text}[/mxp]"
val = f"[url=send cmd={cmd}]{text}[/url]"
return val