mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-31 17:31:27 +00:00
Merge pull request #690 from lbryio/channel_name_length
Fixed parsing of channel names of length < 4
This commit is contained in:
commit
4f02b87800
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed handling of empty search results.
|
* Fixed handling of empty search results.
|
||||||
*
|
* Fixed minimum channel length name(#689).
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const CHANNEL_NAME_MIN_LEN = 4;
|
const CHANNEL_NAME_MIN_LEN = 1;
|
||||||
const CLAIM_ID_MAX_LEN = 40;
|
const CLAIM_ID_MAX_LEN = 40;
|
||||||
|
|
||||||
const lbryuri = {};
|
const lbryuri = {};
|
||||||
|
|
Loading…
Add table
Reference in a new issue