diff --git a/ui/page/search/view.jsx b/ui/page/search/view.jsx index 86f5f7f57..674ef4e80 100644 --- a/ui/page/search/view.jsx +++ b/ui/page/search/view.jsx @@ -3,7 +3,7 @@ import { SIMPLE_SITE, SHOW_ADS } from 'config'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React, { useEffect, Fragment } from 'react'; -import { Lbry, regexInvalidURI, parseURI, isNameValid } from 'lbry-redux'; +import { Lbry, regexInvalidURI, parseURI } from 'lbry-redux'; import ClaimPreview from 'component/claimPreview'; import ClaimList from 'component/claimList'; import Page from 'component/page'; @@ -50,13 +50,11 @@ export default function SearchPage(props: Props) { } const INVALID_URI_CHARS = new RegExp(regexInvalidURI, 'gu'); + let isValid = false; let path; - let isValid = true; try { - let { streamName } = parseURI(urlQuery.replace(/ /g, '-').replace(/:/g, '#')); - if (!isNameValid(streamName)) { - isValid = false; - } + ({ path } = parseURI(urlQuery.replace(/ /g, '-').replace(/:/g, '#'))); + isValid = true; } catch (e) { isValid = false; } @@ -96,7 +94,7 @@ export default function SearchPage(props: Props) {
{urlQuery && ( - {!SIMPLE_SITE && isValid && ( + {!SIMPLE_SITE && (