fix(Offline): fixed 0.0.0.0 host #94

Merged
b merged 3 commits from offline-localhost-fix into staging 2024-05-29 14:09:52 +00:00

View File

@ -16,6 +16,13 @@ const App = () => {
const authState = useSelector((state: State) => state.auth)
useEffect(() => {
if (window.location.hostname === '0.0.0.0') {
// A change of the host is needed to make library available in windows object
// the app can't encrypt files without the crypto library
// which is only available on https or localhost
window.location.hostname = 'localhost'
}
generateBunkerDelegatedKey()
const authController = new AuthController()