From b48739d0baa7e12c01dbcfa4fedddf33b9771e47 Mon Sep 17 00:00:00 2001 From: dag Date: Wed, 8 Dec 2021 17:17:28 +0100 Subject: [PATCH] [DerpibooruBridge] Fix parsing of title (#2346) The previous value was an int and was not accepted by rss-bridge as a title. This change uses the image name instead which fixes the problem and is a better title than the image id. --- bridges/DerpibooruBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/DerpibooruBridge.php b/bridges/DerpibooruBridge.php index 0ad37dd1..8d9c282a 100644 --- a/bridges/DerpibooruBridge.php +++ b/bridges/DerpibooruBridge.php @@ -85,7 +85,7 @@ class DerpibooruBridge extends BridgeAbstract { $postUri = self::URI . $post->id; $item['uri'] = $postUri; - $item['title'] = $post->id; + $item['title'] = $post->name; $item['timestamp'] = strtotime($post->created_at); $item['author'] = $post->uploader; $item['enclosures'] = array($post->view_url);