@openeventkit/event-site 2.0.139 → 2.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openeventkit/event-site",
|
|
3
3
|
"description": "Event Site",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.140",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"stream-browserify": "^3.0.0",
|
|
132
132
|
"stream-chat": "^2.7.2",
|
|
133
133
|
"stream-chat-react": "3.1.7",
|
|
134
|
-
"summit-registration-lite": "5.0.
|
|
134
|
+
"summit-registration-lite": "5.0.40",
|
|
135
135
|
"superagent": "8.0.9",
|
|
136
136
|
"sweetalert2": "^9.17.0",
|
|
137
137
|
"upcoming-events-widget": "3.0.6",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import Player from '@vimeo/player';
|
|
4
|
+
import * as Sentry from "@sentry/react";
|
|
4
5
|
import eventNames from './VimeoPlayerEventNames';
|
|
5
6
|
import Swal from 'sweetalert2';
|
|
6
7
|
|
|
@@ -387,6 +388,7 @@ VimeoPlayer.defaultProps = {
|
|
|
387
388
|
onError: (error) => {
|
|
388
389
|
Swal.fire('Error', 'This video stream will begin momentarily. Please standby.', "warning");
|
|
389
390
|
console.log(error);
|
|
391
|
+
Sentry.captureException(error)
|
|
390
392
|
}
|
|
391
393
|
};
|
|
392
394
|
|