diff --git a/CHANGELOG.md b/CHANGELOG.md index 0164617eb7a..58073540426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Fix "exact match" being applied to Recommended ([#6460](https://github.com/lbryio/lbry-desktop/pull/6460)) - Fix upload button on creator analytics _community pr!_ ([#6458](https://github.com/lbryio/lbry-desktop/pull/6458)) - Prevent sidebar shortcut activation on textarea _community pr!_ ([#6454](https://github.com/lbryio/lbry-desktop/pull/6454)) +- Added \ and = to reserved symbol warning _community pr!_ ([#6733](https://github.com/lbryio/lbry-desktop/pull/6733)) - Improve accessibility and some minor css fixes _community pr!_ ([#6470](https:/github.com/lbryio/lbry-desktop/pull/6470)) - Fix drag / drop publish issues for web users _community pr!_ ([#6466](https://github.com/lbryio/lbry-desktop/pull/6466)) - Fix yarn copyenv on windows _community pr!_ ([#6702](https://github.com/lbryio/lbry-desktop/pull/6702)) diff --git a/ui/constants/claim.js b/ui/constants/claim.js index 8469f707e27..61214a568f4 100644 --- a/ui/constants/claim.js +++ b/ui/constants/claim.js @@ -9,7 +9,7 @@ export const PAGE_PARAM = 'page'; export const PAGE_SIZE_PARAM = 'page_size'; export const INVALID_NAME_ERROR = - __('LBRY names cannot contain spaces or reserved symbols') + ' ' + '(?$#@;:/"<>%{}|^~[]`)'; + __('LBRY names cannot contain spaces or reserved symbols') + ' ' + '(?$#@;:/\\="<>%{}|^~[]`)'; export const FORCE_CONTENT_TYPE_PLAYER = [ 'video/quicktime',