Skip to content
Snippets Groups Projects
Unverified Commit d8cd3e38 authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #4931 from paulkaplan/fix-wistia-crash

Prevent crash when wistia API takes a while to load
parents 0bbb1101 4708ccc7
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,9 @@ class VideoStep extends React.Component {
// We use the Wistia API here to update or pause the video dynamically:
// https://wistia.com/support/developers/player-api
componentDidUpdate (prevProps) {
// Ensure the wistia API is loaded and available
if (!(window.Wistia && window.Wistia.api)) return;
// Get a handle on the currently loaded video
const video = window.Wistia.api(prevProps.video);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment