Allow slash in podcast name

This commit is contained in:
2017-11-14 10:09:36 +01:00
parent b9c223a51b
commit 4f940c1df0

View File

@@ -140,7 +140,7 @@ QUERY;
} }
return response()->download($podcast->getSoundfile(), return response()->download($podcast->getSoundfile(),
'6FM Gemist - ' . $podcast->title . '.mp3'); '6FM Gemist - ' . str_replace('/', '-', $podcast->title) . '.mp3');
} }
/*** /***