From 2bd3f22dd521f1cd1c67d2a350e94203467236f1 Mon Sep 17 00:00:00 2001 From: Dag Date: Fri, 25 Mar 2022 14:49:57 +0100 Subject: [PATCH] [IPBBridge] fix: bug in feed detection logic The previous author forgot to also append ".xml" when actually fetching the detected feed. --- bridges/IPBBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/IPBBridge.php b/bridges/IPBBridge.php index 32c81976..3895e383 100644 --- a/bridges/IPBBridge.php +++ b/bridges/IPBBridge.php @@ -55,7 +55,7 @@ class IPBBridge extends FeedExpander { $headers = get_headers($uri . '.xml'); if($headers[0] === 'HTTP/1.1 200 OK') { // Heureka! It's a valid feed! - return $this->collectExpandableDatas($uri); + return $this->collectExpandableDatas($uri . '.xml'); } // No valid feed, so do it the hard way