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
parent
commit
96797f6786
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hc/front/forms.py

+ 1
- 1
hc/front/forms.py View File

@ -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"]


Loading…
Cancel
Save