diff --git a/static/img/favicon.png b/static/img/favicon.png index 4570d2248..20e725d6e 100644 Binary files a/static/img/favicon.png and b/static/img/favicon.png differ diff --git a/static/img/lbry-favicon.png b/static/img/lbry-favicon.png new file mode 100644 index 000000000..4570d2248 Binary files /dev/null and b/static/img/lbry-favicon.png differ diff --git a/ui/component/channelThumbnail/spaceman.png b/ui/component/channelThumbnail/spaceman.png new file mode 100644 index 000000000..4300ae1c1 Binary files /dev/null and b/ui/component/channelThumbnail/spaceman.png differ diff --git a/ui/component/channelThumbnail/view.jsx b/ui/component/channelThumbnail/view.jsx index 7f3c97b80..7b230cd0c 100644 --- a/ui/component/channelThumbnail/view.jsx +++ b/ui/component/channelThumbnail/view.jsx @@ -2,7 +2,7 @@ import React from 'react'; import { parseURI } from 'lbry-redux'; import classnames from 'classnames'; -import Gerbil from './gerbil.png'; +import Spaceman from './spaceman.png'; import FreezeframeWrapper from 'component/fileThumbnail/FreezeframeWrapper'; import ChannelStakedIndicator from 'component/channelStakedIndicator'; import { getThumbnailCdnUrl } from 'util/thumbnail'; @@ -117,7 +117,7 @@ function ChannelThumbnail(props: Props) { ref={thumbnailRef} alt={__('Channel profile picture')} className="channel-thumbnail__default" - src={!thumbError && url ? url : Gerbil} + src={!thumbError && url ? url : Spaceman} width={thumbnailSize} height={thumbnailSize} loading={noLazyLoad ? undefined : 'lazy'} @@ -133,7 +133,7 @@ function ChannelThumbnail(props: Props) { ref={thumbnailRef} alt={__('Channel profile picture')} className="channel-thumbnail__custom" - src={!thumbError && url ? url : Gerbil} + src={!thumbError && url ? url : Spaceman} width={thumbnailSize} height={thumbnailSize} loading={noLazyLoad ? undefined : 'lazy'} diff --git a/ui/component/claimTilesDiscover/view.jsx b/ui/component/claimTilesDiscover/view.jsx index 069c8f7ca..73fab9736 100644 --- a/ui/component/claimTilesDiscover/view.jsx +++ b/ui/component/claimTilesDiscover/view.jsx @@ -156,7 +156,7 @@ function ClaimTilesDiscover(props: Props) { const { location } = useHistory(); const urlParams = new URLSearchParams(location.search); const feeAmountInUrl = urlParams.get('fee_amount'); - const feeAmountParam = feeAmountInUrl || feeAmount; + const feeAmountParam = feeAmountInUrl || feeAmount || CS.FEE_AMOUNT_ONLY_FREE; const mutedAndBlockedChannelIds = Array.from( new Set(mutedUris.concat(blockedUris).map((uri) => splitBySeparator(uri)[1])) ); @@ -291,7 +291,7 @@ function ClaimTilesDiscover(props: Props) { }; const modifiedUris = uris ? uris.slice() : []; - const fixUris = pinUrls || ['lbry://@AlisonMorrow#6/LBRY#8']; + const fixUris = pinUrls || ['lbry://@EmperorLemon#e/the-wizard-of-oz-and-the-dark-side-of#3']; if (pin && modifiedUris && modifiedUris.length > 2 && window.location.pathname === '/') { fixUris.forEach((fixUri) => { @@ -308,7 +308,13 @@ function ClaimTilesDiscover(props: Props) {