Skip to content

Commit

Permalink
#25959 fix image not found
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelrojas committed Oct 17, 2023
1 parent 6495f18 commit 0cf6c53
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -453,7 +453,7 @@ export class DotSeoMetaTagsService {
const result: SeoRulesResult[] = [];

if (
imageMetaData?.url !== IMG_NOT_FOUND_KEY &&
imageMetaData?.url !== IMG_NOT_FOUND_KEY ||
imageMetaData.length <= SEO_LIMITS.MAX_IMAGE_BYTES
) {
result.push(
Expand All @@ -462,7 +462,7 @@ export class DotSeoMetaTagsService {
}

if (
imageMetaData?.url === IMG_NOT_FOUND_KEY &&
imageMetaData?.url === IMG_NOT_FOUND_KEY ||
this.areAllFalsyOrEmpty([imageOgElements, imageOg])
) {
result.push(
Expand Down Expand Up @@ -685,7 +685,7 @@ export class DotSeoMetaTagsService {
}

if (
imageMetaData?.url === IMG_NOT_FOUND_KEY &&
imageMetaData?.url === IMG_NOT_FOUND_KEY ||
this.areAllFalsyOrEmpty([twitterImage, twitterImageElements])
) {
result.push(
Expand Down

0 comments on commit 0cf6c53

Please sign in to comment.