revert the revert the revert the revert

This commit is contained in:
Sean Yesmunt 2020-01-02 21:40:49 -05:00 committed by GitHub
parent 5d893bc420
commit 0345f2d294
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,12 +20,12 @@ class CardMedia extends React.PureComponent<Props> {
let url;
// @if TARGET='web'
// Pass image urls through a compression proxy
// url = thumbnail || Placeholder;
url = thumbnail
? 'https://ext.thumbnails.lbry.com/400x,q55/' +
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:/')
: Placeholder;
// thumbnail.replace('https://', 'https:/').replace('http://', 'http:/')
// : Placeholder;
// @endif
// @if TARGET='app'
url = thumbnail || Placeholder;