Skip to content

Commit

Permalink
fix: issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dipratap committed Sep 18, 2024
1 parent 55108c1 commit 29e9e6d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/metatags/seo-checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ class SeoChecks {
* @param tagContent
*/
addToAllTags(url, tagName, tagContent) {
if (!tagContent) {
return;
}
const tagContentLowerCase = tagContent.toLowerCase();
this.allTags[tagName][tagContentLowerCase] ??= {
pageUrls: new Set(),
Expand Down

0 comments on commit 29e9e6d

Please sign in to comment.