diff --git a/ui/component/cardMedia/view.jsx b/ui/component/cardMedia/view.jsx index fad59ecf9..6ba1476f4 100644 --- a/ui/component/cardMedia/view.jsx +++ b/ui/component/cardMedia/view.jsx @@ -17,7 +17,11 @@ class CardMedia extends React.PureComponent { return ; } - const url = thumbnail ? 'https://ext.thumbnails.lbry.com/400x,q55/' + thumbnail : Placeholder; + const 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; return
; } }