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);