From 6a179790ee89aad8332a592d5c6912101c5bc1f9 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 2 Jan 2020 18:27:23 -0500 Subject: [PATCH] fix typo --- ui/component/cardMedia/view.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/component/cardMedia/view.jsx b/ui/component/cardMedia/view.jsx index 08ef8ca2f..d4bea53b9 100644 --- a/ui/component/cardMedia/view.jsx +++ b/ui/component/cardMedia/view.jsx @@ -20,7 +20,8 @@ class CardMedia extends React.PureComponent { let url; // @if TARGET='web' // Pass image urls through a compression proxy - url = thumbnail || Placeholder; + // url = thumbnail || Placeholder; + url = thumbnail ? 'https://ext.thumbnails.lbry.com/400x,q55/' + // The image server will redirect if we don't remove the double slashes after http(s) thumbnail.replace('https://', 'https:/').replace('http://', 'http:/')