This commit is contained in:
Sean Yesmunt 2020-12-09 18:03:40 -05:00
parent dccb1c93e1
commit c2213d9008
2 changed files with 1 additions and 2 deletions

View file

@ -14,7 +14,6 @@ WELCOME_VERSION=1.0
# Custom Site info
DOMAIN=lbry.tv
URL=https://lbry.tv
THUMBNAIL_CDN_URL=https://cached-proxy.vanwanet.com/?url=
# UI
SITE_TITLE=lbry.tv

View file

@ -42,7 +42,7 @@ function FileThumbnail(props: Props) {
// @if TARGET='web'
// Pass image urls through a compression proxy
if (thumbnail && THUMBNAIL_CDN_URL && !thumbnail.includes('https://spee.ch')) {
// url = `${THUMBNAIL_CDN_URL}${encodeURIComponent(thumbnail)}`;
url = `${THUMBNAIL_CDN_URL}${thumbnail}`;
}
// @endif