From cd0ca7f645127c003a3234e11fedfa672e19cccd Mon Sep 17 00:00:00 2001 From: Dag Date: Sun, 31 Jul 2022 03:58:07 +0200 Subject: [PATCH] fix: change default curl user agent (#2926) --- bridges/NovelUpdatesBridge.php | 3 +-- config.default.ini.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bridges/NovelUpdatesBridge.php b/bridges/NovelUpdatesBridge.php index 3a9d9b36..79969ea7 100644 --- a/bridges/NovelUpdatesBridge.php +++ b/bridges/NovelUpdatesBridge.php @@ -30,7 +30,7 @@ class NovelUpdatesBridge extends BridgeAbstract { $fullhtml = getSimpleHTMLDOM($this->getURI()); - $this->seriesTitle = $fullhtml->find('h4.seriestitle', 0)->plaintext; + $this->seriesTitle = $fullhtml->find('div.seriestitlenu', 0)->plaintext; // dirty fix for nasty simpledom bug: https://github.com/sebsauvage/rss-bridge/issues/259 // forcefully removes tbody $html = $fullhtml->find('table#myTable', 0)->innertext; @@ -66,7 +66,6 @@ class NovelUpdatesBridge extends BridgeAbstract if (!empty($this->seriesTitle)) { return $this->seriesTitle . ' - ' . static::NAME; } - return parent::getName(); } } diff --git a/config.default.ini.php b/config.default.ini.php index c1627aac..b7f2677b 100644 --- a/config.default.ini.php +++ b/config.default.ini.php @@ -14,7 +14,7 @@ timezone = "UTC" [http] timeout = 60 -useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36" +useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0" [cache]