Skip to content

Commit c49b5ef

Browse files
author
touchRED
committed
fix: few more extractor updates
1 parent 3c336ef commit c49b5ef

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

src/extractors/custom/gothamist.com/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ export const GothamistComExtractor = {
2424
'abbr',
2525
'abbr.published',
2626
],
27-
28-
timezone: 'America/New_York',
2927
},
3028

3129
dek: {

src/extractors/custom/news.nationalgeographic.com/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export const NewsNationalgeographicComExtractor = {
1111

1212
date_published: {
1313
selectors: [['meta[name="article:published_time"]', 'value']],
14-
timezone: 'America/New_York',
1514
},
1615

1716
dek: {

src/extractors/custom/www.al.com/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const WwwAlComExtractor = {
1111

1212
date_published: {
1313
selectors: [['meta[name="article_date_original"]', 'value']],
14-
timezone: 'EST',
14+
timezone: 'CST',
1515
},
1616

1717
lead_image_url: {

src/extractors/custom/www.al.com/index.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('WwwAlComExtractor', () => {
5757

5858
// Update these values with the expected values from
5959
// the article.
60-
assert.equal(date_published, '2016-12-22T23:47:00.000Z');
60+
assert.equal(date_published, '2016-12-23T00:47:00.000Z');
6161
});
6262

6363
it('returns the lead_image_url', async () => {

0 commit comments

Comments
 (0)