Skip to content

Commit

Permalink
Bugfix in livestreams
Browse files Browse the repository at this point in the history
- Wrong date in end time for fetching upcomming events from opencast
- Also remove the mail template, because IDE reformats the markdown and
  messes the syntax

Signed-off-by: Stefanos Georgopoulos <[email protected]>
  • Loading branch information
stefanosgeo committed Jun 13, 2024
1 parent 2eb528e commit 4a2eb91
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 59 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/EnableLivestreams.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function handle(OpencastService $opencastService, WowzaService $wowzaServ
// $startDate = (Carbon::now()->isDST()) ? Carbon::now()->subMinutes(120) : Carbon::now()->subMinutes(120);
// $endDate = (Carbon::now()->isDST()) ? Carbon::now()->subMinutes(110) : Carbon::now()->subMinutes(110);
$startDate = Carbon::now()->subMinutes(120);
$endDate = Carbon::now()->subMinutes(119);
$endDate = Carbon::now()->subMinutes(111);
// $endDate = (Carbon::now()->isDST()) ? Carbon::now()->addMinutes(110) : Carbon::now()->subMinutes(50);
Log::info('Searching for active Opencast recording events without active livestream room reservation');
$this->info('Searching for active Opencast recording events');
Expand Down
58 changes: 0 additions & 58 deletions resources/views/vendor/notifications/email.blade.php

This file was deleted.

0 comments on commit 4a2eb91

Please sign in to comment.