Fixed parsing of channel names of length < 4 #690

Merged
hackrush01 merged 1 commit from channel_name_length into master 2017-10-23 22:59:40 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 72130c74ae - Show all commits

View file

@ -17,7 +17,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
### Fixed
* Fixed handling of empty search results.
*
* Fixed minimum channel length name(#689).
### Deprecated
*

View file

@ -1,4 +1,4 @@
const CHANNEL_NAME_MIN_LEN = 4;
const CHANNEL_NAME_MIN_LEN = 1;
const CLAIM_ID_MAX_LEN = 40;
const lbryuri = {};