Skip to content

Commit

Permalink
[DailythanthiBridge] fix url (#4261)
Browse files Browse the repository at this point in the history
  • Loading branch information
tillcash committed Sep 9, 2024
1 parent 358bebb commit 40041dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridges/DailythanthiBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class DailythanthiBridge extends BridgeAbstract
{
const NAME = 'Dailythanthi';
const URI = 'https://www.dailythanthi.com/';
const URI = 'https://www.dailythanthi.com';
const DESCRIPTION = 'Retrieve news from dailythanthi.com';
const MAINTAINER = 'tillcash';
const PARAMETERS = [
Expand Down Expand Up @@ -46,7 +46,7 @@ public function getName()

public function collectData()
{
$dom = getSimpleHTMLDOM(self::URI . $this->getInput('topic'));
$dom = getSimpleHTMLDOM(self::URI . '/' . $this->getInput('topic'));

foreach ($dom->find('div.ListingNewsWithMEDImage') as $element) {
$slug = $element->find('a', 1);
Expand Down

0 comments on commit 40041dd

Please sign in to comment.