Skip to content

Commit

Permalink
fix(dj): Fixed an issue where Prebuilt would get an undefined error w…
Browse files Browse the repository at this point in the history
…hen useLegacyVideoProcessor was not defined
  • Loading branch information
markbackman authored and kompfner committed Feb 2, 2024
1 parent 4f6639c commit 204f755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -5553,7 +5553,7 @@ function stripInputSettingsForUnsupportedPlatforms(settings) {
if (
settings.video &&
!isVideoProcessingSupported(
window._dailyConfig.useLegacyVideoProcessor ?? false
window._dailyConfig?.useLegacyVideoProcessor ?? false
)
) {
delete settings.video;
Expand Down

0 comments on commit 204f755

Please sign in to comment.