Small fixes after golive
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user