Skip to content

Commit 8c4125e

Browse files
committed
fix: overflow stream 2 way synch
1 parent 39fd988 commit 8c4125e

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

app/Models/Foundation/Summit/Events/SummitEvent.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1925,7 +1925,7 @@ public function promote2Presentation(PresentationType $type): void
19251925
$stmt->executeQuery();
19261926

19271927
$sql = <<<SQL
1928-
INSERT INTO `Presentation` (`ID`, `Status`, `OtherTopic`, `Progress`, `Views`, `BeenEmailed`, `ProblemAddressed`, `AttendeesExpectedLearnt`, `Legacy`, `ToRecord`, `AttendingMedia`, `Slug`, `ModeratorID`, `SelectionPlanID`, `WillAllSpeakersAttend`, `DisclaimerAcceptedDate`, `CustomOrder`)
1928+
INSERT INTO `Presentation` (`ID`, `Status`, `OtherTopic`, `Progress`, `Views`, `BeenEmailed`, `ProblemAddressed`, `AttendeesExpectedLearnt`, `Legacy`, `ToRecord`, `AttendingMedia`, `Slug`, `ModeratorID`, `SelectionPlanID`, `WillAllSpeakersAttend`, `DisclaimerAcceptedDate`, `CustomOrder`)
19291929
VALUES (:id, NULL, NULL, '0', '0', '0', NULL, NULL, '0', '0', '0', NULL, NULL, NULL, '0', NULL, '0')
19301930
SQL;
19311931

@@ -1991,11 +1991,7 @@ public function setOverflow(string $overflow_streaming_url,
19911991

19921992
public function clearOverflow(string $occupancy = self::OccupancyEmpty): void
19931993
{
1994-
$this->overflow_streaming_url = null;
1995-
$this->overflow_stream_is_secure = false;
19961994
$this->overflow_stream_key = null;
1997-
$this->streaming_url = null;
1998-
$this->stream_is_secure = false;
19991995
$this->occupancy = $occupancy;
20001996
}
20011997

@@ -2206,4 +2202,4 @@ public function hasRSVPWaitList(): bool
22062202
{
22072203
return $this->rsvp_max_user_wait_list_number > 0;
22082204
}
2209-
}
2205+
}

0 commit comments

Comments
 (0)