From 7b86fb38cf86843b687406e2e122470246f8992f Mon Sep 17 00:00:00 2001 From: Mohamed Jinas Date: Fri, 11 Sep 2020 00:05:20 +0500 Subject: [PATCH] Voice guid patch fix --- app/Services/VoiceService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/VoiceService.php b/app/Services/VoiceService.php index 91b5593..06b6e4f 100644 --- a/app/Services/VoiceService.php +++ b/app/Services/VoiceService.php @@ -18,7 +18,7 @@ class VoiceService $articlesitems = []; //Looping through the articles and scraping and while scraping it creates a new instance of the scraper. foreach ($articles as $article) { - $articlesitems[] = (new VoiceScraper)->extract("https://voice.mv/".$article[1]); + $articlesitems[] = (new VoiceScraper)->extract("https://voice.mv".$article[1]); } return $articlesitems;