|
@@ -7,6 +7,7 @@ import { translate } from '../../../i18n';
|
7
|
7
|
import { Icon, IconCopy, IconCheck } from '../../../icons';
|
8
|
8
|
import { connect } from '../../../redux';
|
9
|
9
|
import { copyText, getDecodedURI } from '../../../util';
|
|
10
|
+import logger from '../../logger';
|
10
|
11
|
|
11
|
12
|
type Props = {
|
12
|
13
|
|
|
@@ -156,6 +157,9 @@ class CopyMeetingUrl extends Component<Props, State> {
|
156
|
157
|
.then(() => {
|
157
|
158
|
this._showLinkCopied();
|
158
|
159
|
window.setTimeout(this._hideLinkCopied, COPY_TIMEOUT);
|
|
160
|
+ })
|
|
161
|
+ .catch(e => {
|
|
162
|
+ logger.error(e);
|
159
|
163
|
});
|
160
|
164
|
}
|
161
|
165
|
|