From c146bfcd2d7c3cbbc8953f58efb309fa0524b466 Mon Sep 17 00:00:00 2001 From: eniamza <65225917+Eniamza@users.noreply.github.com> Date: Fri, 30 Jul 2021 00:55:25 +0600 Subject: [PATCH] Fix: Added \ and = to Reserved symbols warning --- ui/constants/claim.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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',