mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[ArsTechnicaBridge] UID has to be string
This commit is contained in:
parent
63bde3cfbb
commit
4b2901d8f4
@ -64,7 +64,6 @@ class ArsTechnicaBridge extends FeedExpander
|
|||||||
$parsely = $item_html->find('[name="parsely-page"]', 0);
|
$parsely = $item_html->find('[name="parsely-page"]', 0);
|
||||||
$parsely_json = json_decode(html_entity_decode($parsely->content), true);
|
$parsely_json = json_decode(html_entity_decode($parsely->content), true);
|
||||||
$item['categories'] = $parsely_json['tags'];
|
$item['categories'] = $parsely_json['tags'];
|
||||||
$item['uid'] = $parsely_json['post_id'];
|
|
||||||
|
|
||||||
// Some lightboxes are nested in figures. I'd guess that's a
|
// Some lightboxes are nested in figures. I'd guess that's a
|
||||||
// bug in the website
|
// bug in the website
|
||||||
@ -110,7 +109,7 @@ class ArsTechnicaBridge extends FeedExpander
|
|||||||
}
|
}
|
||||||
|
|
||||||
$item['content'] = backgroundToImg($item['content']);
|
$item['content'] = backgroundToImg($item['content']);
|
||||||
|
$item['uid'] = strval($parsely_json['post_id']);
|
||||||
return $item;
|
return $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user