1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

try revert getAppPath

This commit is contained in:
Chad Scharf
2020-05-14 14:44:11 -04:00
parent 10e04580d7
commit d5ab36e577
2 changed files with 17 additions and 0 deletions

View File

@@ -205,6 +205,13 @@ class SafariExtensionViewController: SFSafariExtensionViewController, WKScriptMe
}
}
}
} else if command == "getAppPath" {
SFSafariExtension.getBaseURI(completionHandler: { uri in
if uri != nil {
m!.responseData = uri!.absoluteString
self.replyMessage(message: m!)
}
})
}
}