Merge pull request #260 from AndrewRyanChama/patch-1
Remove url encoding from android element:// links
This commit is contained in:
commit
3a8cc2d4d5
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ export class Element {
|
||||||
} else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) {
|
} else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) {
|
||||||
return `element://vector/webapp/#/${encodeURIComponent(fragmentPath)}`;
|
return `element://vector/webapp/#/${encodeURIComponent(fragmentPath)}`;
|
||||||
} else {
|
} else {
|
||||||
return `element://${encodeURIComponent(fragmentPath)}`;
|
return `element://${fragmentPath}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue