Merge pull request #397 from AleziaKurdis/PlaceApp_fileProtocoleSupport

Places app: support for file URI scheme
This commit is contained in:
ksuprynowicz 2023-05-12 20:44:53 +02:00 committed by GitHub
commit b097976a3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;