From 187dc565a68608d34fcd9c08794d279c8d53fb6f Mon Sep 17 00:00:00 2001 From: Mischa Spelt Date: Sun, 26 May 2019 09:54:55 +0200 Subject: [PATCH] Naam van downloadbestand aangepast van 6FM naar NH Gooi --- api/app/Http/Controllers/PodcastController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/app/Http/Controllers/PodcastController.php b/api/app/Http/Controllers/PodcastController.php index 2f68f58..0ac01f8 100644 --- a/api/app/Http/Controllers/PodcastController.php +++ b/api/app/Http/Controllers/PodcastController.php @@ -140,7 +140,7 @@ QUERY; } return response()->download($podcast->getSoundfile(), - '6FM Gemist - ' . str_replace('/', '-', $podcast->title) . '.mp3'); + 'NH Gooi Gemist - ' . str_replace('/', '-', $podcast->title) . '.mp3'); } /*** @@ -174,7 +174,7 @@ QUERY; public function latestNews(Request $request) { $filename = '/var/audio/regionieuws.mp3'; return response()->download($filename, - '6FM Regionieuws ' . date('d-m-Y') . '.mp3'); + 'NH Gooi Regionieuws ' . date('d-m-Y') . '.mp3'); $size = filesize($filename); $content = fread($file, $size);