Browse Source
Merge pull request #320 from jerrykan/matrix_alias_length
Increase allowable length of Matrix room alias
pull/325/head
Pēteris Caune
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
hc/front/forms.py
|
|
@ -173,7 +173,7 @@ class ChannelNameForm(forms.Form): |
|
|
|
|
|
|
|
class AddMatrixForm(forms.Form): |
|
|
|
error_css_class = "has-error" |
|
|
|
alias = forms.CharField(max_length=40) |
|
|
|
alias = forms.CharField(max_length=100) |
|
|
|
|
|
|
|
def clean_alias(self): |
|
|
|
v = self.cleaned_data["alias"] |
|
|
|