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