remove channel length minimum, fixes #645

This commit is contained in:
Jeremy Kauffman 2017-10-02 08:40:42 -04:00
parent 92f3cf46e2
commit a7a4e8dc16
2 changed files with 1 additions and 7 deletions

View file

@ -13,6 +13,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
### Changed
* Updated the daemon from 0.16.1 to [0.16.3](https://github.com/lbryio/lbry/releases/tag/v0.16.3) to improve download performance and download issue detection.
* There is no longer a minimum channel length (#645)
* Changed the File page to make it clearer how to to open the folder for a file
### Fixed

View file

@ -53,13 +53,6 @@ class ChannelSection extends React.PureComponent {
}
handleCreateChannelClick(event) {
if (this.state.newChannelName.length < 5) {
this.refs.newChannelName.showError(
__("LBRY channel names must be at least 5 characters in length.")
);
return;
}
this.setState({
creatingChannel: true,
});