From d3d33c72bda0cb6f222b415da075b32f2a60a61d Mon Sep 17 00:00:00 2001 From: tillcash Date: Tue, 11 Jun 2024 19:10:49 +0530 Subject: [PATCH] [HinduTamilBridge] fix timestamp (#4127) --- bridges/HinduTamilBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/HinduTamilBridge.php b/bridges/HinduTamilBridge.php index cdbdfe358b0..cab04171acf 100644 --- a/bridges/HinduTamilBridge.php +++ b/bridges/HinduTamilBridge.php @@ -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);