mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 13:51:13 +00:00
Update post listing to prefer local image when available (#1858)
This commit is contained in:
parent
9e69f4f7c9
commit
7c6f304b2d
1 changed files with 3 additions and 9 deletions
|
@ -310,16 +310,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
const url = post.url;
|
||||
const thumbnail = post.thumbnail_url;
|
||||
|
||||
if (url && isImage(url)) {
|
||||
if (url.includes("pictrs")) {
|
||||
return url;
|
||||
} else if (thumbnail) {
|
||||
return thumbnail;
|
||||
} else {
|
||||
return url;
|
||||
}
|
||||
} else if (thumbnail) {
|
||||
if (thumbnail) {
|
||||
return thumbnail;
|
||||
} else if (url && isImage(url)) {
|
||||
return url;
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue