From d257c312c18b4e12e964b8b047c2682cbbdd64b2 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 8 Dec 2020 14:24:35 -0500 Subject: [PATCH] Revert "use cdn for thumbnails" This reverts commit f7279c1d49ae0881fc5603a79f9b4f99be7f0d15. --- .env.defaults | 1 - config.js | 1 - ui/component/fileThumbnail/view.jsx | 9 +-------- 3 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.env.defaults b/.env.defaults index 7505c9733..975646bac 100644 --- a/.env.defaults +++ b/.env.defaults @@ -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 diff --git a/config.js b/config.js index 367d84387..59121e9ae 100644 --- a/config.js +++ b/config.js @@ -16,7 +16,6 @@ const config = { DOMAIN: process.env.DOMAIN, SHARE_DOMAIN_URL: process.env.SHARE_DOMAIN_URL, URL: process.env.URL, - THUMBNAIL_CDN_URL: process.env.THUMBNAIL_CDN_URL, SITE_TITLE: process.env.SITE_TITLE, SITE_NAME: process.env.SITE_NAME, SITE_DESCRIPTION: process.env.SITE_DESCRIPTION, diff --git a/ui/component/fileThumbnail/view.jsx b/ui/component/fileThumbnail/view.jsx index 21ad1f4a0..d13829050 100644 --- a/ui/component/fileThumbnail/view.jsx +++ b/ui/component/fileThumbnail/view.jsx @@ -1,6 +1,5 @@ // @flow import type { Node } from 'react'; -import { THUMBNAIL_CDN_URL } from 'config'; import React from 'react'; import FreezeframeWrapper from './FreezeframeWrapper'; import Placeholder from './placeholder.png'; @@ -38,13 +37,7 @@ function FileThumbnail(props: Props) { ); } - let url = thumbnail || (hasResolvedClaim ? Placeholder : ''); - // @if TARGET='web' - // Pass image urls through a compression proxy - if (thumbnail && !thumbnail.includes('https://spee.ch')) { - url = `${THUMBNAIL_CDN_URL}${encodeURIComponent(thumbnail)}`; - } - // @endif + const url = thumbnail || (hasResolvedClaim ? Placeholder : ''); return (