Skip to content

Commit

Permalink
#25959 image not-found
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelrojas committed Oct 16, 2023
1 parent 74bcb91 commit b3c2f1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ export class DotSeoMetaTagsService {
getImageFileSize(imageUrl: string): Observable<DotCMSTempFile | ImageMetaData> {
return from(fetch(imageUrl)).pipe(
mergeMap((response) => {
if (response.status == 404) {
if (response.status === 404) {
return of({
size: 0,
url: IMG_NOT_FOUND_KEY
Expand Down

0 comments on commit b3c2f1a

Please sign in to comment.