We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f40cd commit d7b2e2cCopy full SHA for d7b2e2c
posts/forms/compose.py
@@ -89,7 +89,7 @@ def clean_topic(self):
89
return topic
90
91
def clean_coauthors(self):
92
- coauthors = self.cleaned_data.get("coauthors")
+ coauthors = [coauthor.replace("@", "", 1) for coauthor in self.cleaned_data.get("coauthors")]
93
if not coauthors:
94
return []
95
0 commit comments