From 66b14b2dc5ea2702c1c79967c430b93459d9f691 Mon Sep 17 00:00:00 2001 From: rleed <101502594+rleed@users.noreply.github.com> Date: Tue, 3 Oct 2023 19:39:20 -0300 Subject: [PATCH] Update timedate-scraper.js - lint --- lib/timedate-scraper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/timedate-scraper.js b/lib/timedate-scraper.js index f83d6cb4c3..87eb37f38d 100644 --- a/lib/timedate-scraper.js +++ b/lib/timedate-scraper.js @@ -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')))],