Skip to content

Commit

Permalink
Update timedate-scraper.js - lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rleed committed Oct 18, 2023
1 parent 05eb2f1 commit 66b14b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/timedate-scraper.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function initDateRule () {
['meta[itemprop="datePublished"]', node => asDate(node.getAttribute('content'))],
['meta[itemprop="datepublished"]', node => asDate(node.getAttribute('content'))],
['meta[itemprop="datecreated"]', node => asDate(node.getAttribute('content'))],
['meta[http-equiv="date"]', node => asDate(node.getAttribute('content'))],
['meta[http-equiv="date"]', node => asDate(node.getAttribute('content'))],
['meta[property="og:image"]', node => asDate(extractFromURL(node.getAttribute('content')))],
['meta[itemprop="image"]', node => asDate(extractFromURL(node.getAttribute('content')))],

Expand Down

0 comments on commit 66b14b2

Please sign in to comment.