Small fixes after golive

This commit is contained in:
2020-02-28 11:40:07 +01:00
parent 1b1f4d4ebc
commit e7132c3240
2 changed files with 6 additions and 3 deletions

View File

@@ -7,10 +7,12 @@ use \Model\Podcast;
class StreamController extends Controller
{
private static $STREAM_URL = 'https://stream.nhgooi.nl:8001/';
public function liveradio()
{
return view('listen', [
'source' => 'http://stream.nhgooi.nl:8000/mp3live',
'source' => self::$STREAM_URL . 'mp3live',
'title' => 'Luister live',
'content' => 'de live-uitzending van NH Gooi.',
'isStream' => true ]);
@@ -59,7 +61,7 @@ class StreamController extends Controller
public function gemeenteraad(Request $request) {
return view('listen', [
'source' => 'https://stream.nhgooi.nl:8000/gemhuizen',
'source' => self::$STREAM_URL . 'gemhuizen',
'title' => 'Gemeenteraad Huizen',
'content' => 'de openbare vergadering van de gemeenteraad Huizen',
'isStream' => true,