Skip to content

Commit

Permalink
[HinduTamilBridge] fix timestamp (#4127)
Browse files Browse the repository at this point in the history
  • Loading branch information
tillcash authored Jun 11, 2024
1 parent 87fa6ea commit d3d33c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/HinduTamilBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected function parseItem($item)

$date = $dom->find('p span.date', 1);
if ($date) {
$item['timestamp'] = $date->innertext;
$item['timestamp'] = $date->innertext . ' IST';
}

$content = $dom->find('#pgContentPrint', 0);
Expand Down

0 comments on commit d3d33c7

Please sign in to comment.