Merge pull request 'fix(Offline): fixed 0.0.0.0 host' (#94) from offline-localhost-fix into staging
All checks were successful
Release to Staging / build_and_release (push) Successful in 1m4s
All checks were successful
Release to Staging / build_and_release (push) Successful in 1m4s
Reviewed-on: https://git.sigit.io/sig/it/pulls/94 Reviewed-by: b <b@4j.cx>
This commit is contained in:
commit
d2d82b19a4
@ -16,6 +16,13 @@ const App = () => {
|
|||||||
const authState = useSelector((state: State) => state.auth)
|
const authState = useSelector((state: State) => state.auth)
|
||||||
|
|
||||||
useEffect(() => {
|
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()
|
generateBunkerDelegatedKey()
|
||||||
|
|
||||||
const authController = new AuthController()
|
const authController = new AuthController()
|
||||||
|
Loading…
Reference in New Issue
Block a user