mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 20:32:56 +02:00
Merge pull request #397 from AleziaKurdis/PlaceApp_fileProtocoleSupport
Places app: support for file URI scheme
This commit is contained in:
commit
b097976a3e
1 changed files with 2 additions and 1 deletions
|
@ -677,7 +677,8 @@
|
|||
|
||||
function teleportUsingAddressBarValue(url) {
|
||||
var finalizedUrl = url;
|
||||
if (url.substr(0, 7).toLocaleLowerCase() !== "http://" &&
|
||||
if (url.substr(0, 6).toLocaleLowerCase() !== "file:/" &&
|
||||
url.substr(0, 7).toLocaleLowerCase() !== "http://" &&
|
||||
url.substr(0, 8).toLocaleLowerCase() !== "https://" &&
|
||||
url.substr(0, 7).toLocaleLowerCase() !== "hifi://") {
|
||||
finalizedUrl = "hifi://" + url;
|
||||
|
|
Loading…
Reference in a new issue