Skip to content

Commit

Permalink
Merge pull request #129 from techies23/hotfix-webinar-auto-recording
Browse files Browse the repository at this point in the history
Auto recording was not being set for webinars
  • Loading branch information
techies23 authored Aug 12, 2024
2 parents 4d7882d + d7c7fa4 commit 64aece1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/admin/class-zvc-admin-webinars.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static function prepare_webinar( $postData, $post = false ) {
'practice_session' => ! empty( $postData['practice_session'] ) ? true : false,
'hd_video' => ! empty( $postData['hd_video'] ) ? true : false,
'allow_multiple_devices' => ! empty( $postData['allow_multiple_devices'] ) ? true : false,
'auto_recording' => ! empty( $postData['auto_recording'] ) ? true : "none",
'auto_recording' => ! empty( $postData['option_auto_recording'] ) ? $postData['option_auto_recording'] : "none",
'alternative_hosts' => ! empty( $alternative_host_ids ) ? $alternative_host_ids : ''
)
);
Expand Down

0 comments on commit 64aece1

Please sign in to comment.