diff --git a/brutaldon/views.py b/brutaldon/views.py index 3c8288c..2608ab8 100644 --- a/brutaldon/views.py +++ b/brutaldon/views.py @@ -766,7 +766,7 @@ def redraft(request, id): toot_content = re.sub("(^\n)|(\n$)", "", re.sub("\n\n", "\n", toot_content)) # Fix up references for mention in toot.mentions: - menchie_re = re.compile(r"\s?@" + mention.username + r"\s", re.I) + menchie_re = re.compile(r"\s?@\s" + mention.acct + r"\s", re.I) toot_content = menchie_re.sub( " @" + mention.acct + " ", toot_content, count=1 )