|
|
@@ -6,7 +6,7 @@ import { getCurrentConferenceUrl } from '../../../connection';
|
|
6
|
6
|
import { translate } from '../../../i18n';
|
|
7
|
7
|
import { Icon, IconCopy, IconCheck } from '../../../icons';
|
|
8
|
8
|
import { connect } from '../../../redux';
|
|
9
|
|
-import { copyText } from '../../../util';
|
|
|
9
|
+import { copyText, getDecodedURI } from '../../../util';
|
|
10
|
10
|
|
|
11
|
11
|
type Props = {
|
|
12
|
12
|
|
|
|
@@ -156,7 +156,7 @@ class CopyMeetingUrl extends Component<Props, State> {
|
|
156
|
156
|
className = { `url ${showLinkCopied ? 'done' : ''}` }
|
|
157
|
157
|
onClick = { _copyUrl } >
|
|
158
|
158
|
<div className = 'copy-meeting-text'>
|
|
159
|
|
- { !showCopyLink && !showLinkCopied && url }
|
|
|
159
|
+ { !showCopyLink && !showLinkCopied && getDecodedURI(url) }
|
|
160
|
160
|
{ showCopyLink && t('prejoin.copyAndShare') }
|
|
161
|
161
|
{ showLinkCopied && t('prejoin.linkCopied') }
|
|
162
|
162
|
</div>
|