From 4b2901d8f4d326e0004a83434e7d0df818324d36 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Sat, 5 Oct 2024 21:42:16 +0300 Subject: [PATCH] [ArsTechnicaBridge] UID has to be string --- bridges/ArsTechnicaBridge.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bridges/ArsTechnicaBridge.php b/bridges/ArsTechnicaBridge.php index 41dab752..97701f4f 100644 --- a/bridges/ArsTechnicaBridge.php +++ b/bridges/ArsTechnicaBridge.php @@ -64,7 +64,6 @@ class ArsTechnicaBridge extends FeedExpander $parsely = $item_html->find('[name="parsely-page"]', 0); $parsely_json = json_decode(html_entity_decode($parsely->content), true); $item['categories'] = $parsely_json['tags']; - $item['uid'] = $parsely_json['post_id']; // Some lightboxes are nested in figures. I'd guess that's a // bug in the website @@ -110,7 +109,7 @@ class ArsTechnicaBridge extends FeedExpander } $item['content'] = backgroundToImg($item['content']); - + $item['uid'] = strval($parsely_json['post_id']); return $item; } }