mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-12 15:34:00 +00:00
Added additional check for pictshare thumbnail
This commit is contained in:
parent
bc8ad12b04
commit
ffcbb7613e
1 changed files with 4 additions and 1 deletions
5
ui/src/components/post-listing.tsx
vendored
5
ui/src/components/post-listing.tsx
vendored
|
@ -163,7 +163,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
if (isImage(post.url)) {
|
if (isImage(post.url)) {
|
||||||
if (post.url.includes('pictshare')) {
|
if (post.url.includes('pictshare')) {
|
||||||
return pictshareImage(post.url, thumbnail);
|
return pictshareImage(post.url, thumbnail);
|
||||||
} else if (post.thumbnail_url) {
|
} else if (
|
||||||
|
post.thumbnail_url &&
|
||||||
|
post.thumbnail_url.includes('pictshare')
|
||||||
|
) {
|
||||||
return pictshareImage(post.thumbnail_url, thumbnail);
|
return pictshareImage(post.thumbnail_url, thumbnail);
|
||||||
} else {
|
} else {
|
||||||
return post.url;
|
return post.url;
|
||||||
|
|
Loading…
Reference in a new issue