We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
%2c
1 parent 1671f02 commit ff6cddcCopy full SHA for ff6cddc
1 file changed
src/sync/share.ts
@@ -191,7 +191,7 @@ function generateRoomId(folderIndex: number) {
191
export async function copyShareUri(config: ConnectionConfig, isHosting = false) {
192
const shareUri = makeTrackUri(config, workspace.workspaceFolders![config.workspace].uri)!.toString()
193
while (true) {
194
- env.clipboard.writeText(shareUri)
+ env.clipboard.writeText(shareUri.replace('%7C', '|'))
195
const res = await window.showInformationMessage(`${isHosting ? 'Hosting session. ' : ''}The invite link has been copied to clipboard.
196
197
Others may join this session by clicking on the "Join" button and pasting this link.`, 'Copy Again')
0 commit comments