wireapp / wire-webapp

👽 Wire for web
https://app.wire.com
GNU General Public License v3.0
1.14k stars 290 forks source link

http on the desktop app and https on the web app #9469

Closed Aisse-258 closed 4 years ago

Aisse-258 commented 4 years ago

Hello. Thank you for previous instructions. I tried to launch a desktop application with a web application on a localhost. I have some problems with the fact that the web version is connecting via https, and the desktop version is connecting via http. In the .env file I found an option which could impact on connection type of web application (ENFORCE_HTTPS) and it can not do it now. Using "git bisect" I found out that it stopped to work on one of next commits:

There are only 'skip'ped commits left to test.
The first bad commit could be any of:
c742bfcf496ff50f0b531cad7c7ae42e1eea48bc
efb0f561bd7d71984601c3ee5248689faa03aea7
47356f5b4a5f1848d1814d9d2f45a7685407edc5
9b9785d10a5558881f8573bb080b5235c5e4607b
7cc48ec525d0e579afbeee025cd670af03587e7a
We cannot bisect more!

Presumably on 9b9785d10a5558881f8573bb080b5235c5e4607b but it was not possible to build application on any of them to check. My problem is that desktop application is not working with localhost web application while using different connection type. And even if I make them same it is not working too.

Aisse-258 commented 4 years ago

https://github.com/Aisse-258/wire-desktop/commit/8223c4e04b526627bd7152243e2842d0853285e4

bennycode commented 4 years ago

Hi @Aisse-258, the most practical way for you to run a locally hosted desktop app with a locally hosted web app is the following:

Local Webapp Configuration

  1. Set ENFORCE_HTTPS to true in .env.localhost
  2. Set APP_BASE to https://localhost:8081 in .env.localhost
  3. Run yarn start

Local Desktop Configuration

  1. Modify electron/src/lib/CertificateVerifyProcManager.ts so its setCertificateVerifyProc function always returns with a positive check
  2. Run yarn start --env=https://localhost:8081

CertificateVerifyProcManager.ts

export const setCertificateVerifyProc = async (
  request: CertificateVerifyProcProcRequest,
  cb: (verificationResult: number) => void,
): Promise<void> => {
  return cb(CertificateVerificationResult.SUCCESS);
}

Does that work for you?

Aisse-258 commented 4 years ago

Hello. No it doesn't work. .Web application shows "too many redirections" and when running yarn start --env=https://localhost:8081 for desktop it throws many errors image image

bennycode commented 4 years ago

Hi @Aisse-258, I just verified the workflow and here is how it should roll for you:

1. Web Application

  1. Checkout dev branch of "wire-webapp"
  2. Create a .env file in the root of "wire-webapp" (see below for contents)
  3. Run yarn in "wire-webapp"
  4. Run yarn start in "wire-webapp"

.env file

APP_BASE="https://localhost:8081"
BACKEND_REST="https://prod-nginz-https.wire.com"
BACKEND_WS="wss://prod-nginz-ssl.wire.com"
CSP_EXTRA_CONNECT_SRC="http://localhost:32123, ws://localhost:32123, https://*.zinfra.io, https://*.wire.com, https://api.raygun.io, wss://*.zinfra.io, wss://prod-nginz-ssl.wire.com, https://wire.count.ly"
CSP_EXTRA_IMG_SRC="https://*.zinfra.io, https://*.wire.com"
CSP_EXTRA_SCRIPT_SRC="http://localhost:32123, https://*.zinfra.io, https://*.wire.com, https://api.raygun.io"
ENFORCE_HTTPS="false"
FEATURE_ENABLE_DEBUG="true"
PORT="8081"

2. Desktop Application

  1. Fork my feature branch of "wire-desktop"
  2. Runyarn in "wire-desktop"
  3. Run yarn start:localhost in "wire-desktop"

I just tried all of the above and it worked like a charm. ✨

Aisse-258 commented 4 years ago

Hello. Thank you very much for this instructions, I really can run both applications after doing it. But there is another problem appeared. I can not to log in into my account. It is just redirecting me to the authorisation page again. And it also throws errors when I am trying to log in:

Screenshots of errors ![image](https://user-images.githubusercontent.com/50519492/93003230-a0f23d80-f545-11ea-9971-3721f533dd8b.png) ![image](https://user-images.githubusercontent.com/50519492/93003268-f4fd2200-f545-11ea-85ff-d17f256cbdb6.png) ![image](https://user-images.githubusercontent.com/50519492/93003278-0e9e6980-f546-11ea-8fe7-3305411d013c.png) ![image](https://user-images.githubusercontent.com/50519492/93003310-3f7e9e80-f546-11ea-8eac-5ee13e747036.png) ![image](https://user-images.githubusercontent.com/50519492/93003326-591fe600-f546-11ea-9dea-0202328cb3fb.png) ![image](https://user-images.githubusercontent.com/50519492/93003359-b9af2300-f546-11ea-96f7-032e6069fea2.png) ![image](https://user-images.githubusercontent.com/50519492/93003365-caf82f80-f546-11ea-9f23-8f3ec4a4fa8e.png) ![image](https://user-images.githubusercontent.com/50519492/93003397-072b9000-f547-11ea-90c5-dd53426e11e2.png) ![image](https://user-images.githubusercontent.com/50519492/93003405-1a3e6000-f547-11ea-9691-f47037411b8c.png) ![image](https://user-images.githubusercontent.com/50519492/93003417-2f1af380-f547-11ea-80de-d4c5dccc7908.png) ![image](https://user-images.githubusercontent.com/50519492/93003451-6db0ae00-f547-11ea-8545-3aada1e17c0e.png) ![image](https://user-images.githubusercontent.com/50519492/93003465-83be6e80-f547-11ea-9d8a-89bc078bc254.png)
All the same copied from the console The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. VM59 auth.js:31519 Download the React DevTools for a better development experience: https://fb.me/react-devtools VM59 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_START VM59 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_COOKIE_START VM59 auth.js:65278 @wireapp/webapp action RUNTIME_CONFIRM_SUPPORTED_BROWSER VM59 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_FINISH VM59 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_COOKIE_FINISH VM59 auth.js:65278 @wireapp/webapp action GET_SSO_SETTINGS_START VM59 auth.js:65278 @wireapp/webapp action COOKIE_POLLING_START VM59 auth.js:67918 [HMR] connected VM59 auth.js:68018 [HMR] bundle has 1 warnings VM59 auth.js:68019 /min/app.js is 10.9 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit. VM59 auth.js:65278 @wireapp/webapp action GET_SSO_SETTINGS_SUCCESS VM59 auth.js:65278 @wireapp/webapp action AUTH_RESET_ERROR VM59 auth.js:65278 @wireapp/webapp action LOGIN_START VM59 auth.js:65278 @wireapp/webapp action LOGOUT_START VM57 vendor.js:43045 POST https://prod-nginz-https.wire.com/access/logout 403 (Forbidden) dispatchXhrRequest @ VM57 vendor.js:43045 xhrAdapter @ VM57 vendor.js:42879 dispatchRequest @ VM57 vendor.js:43525 Promise.then (async) request @ VM57 vendor.js:43302 wrap @ VM57 vendor.js:43891 (anonymous) @ VM57 vendor.js:6361 (anonymous) @ VM57 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM57 vendor.js:6286 _sendRequest @ VM57 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM57 vendor.js:7628 (anonymous) @ VM57 vendor.js:2056 (anonymous) @ VM57 vendor.js:1957 push../node_modules/@wireapp/api-client/dist/auth/AuthAPI.js.__awaiter @ VM57 vendor.js:1953 postLogout @ VM57 vendor.js:2050 (anonymous) @ VM57 vendor.js:1060 (anonymous) @ VM57 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM57 vendor.js:888 logout @ VM57 vendor.js:1056 (anonymous) @ VM59 auth.js:31932 (anonymous) @ VM59 auth.js:31699 push../node_modules/@wireapp/core/dist/Account.js.__awaiter @ VM59 auth.js:31695 logout @ VM59 auth.js:31931 (anonymous) @ VM59 auth.js:73254 asyncGeneratorStep @ VM59 auth.js:72623 _next @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:73264 (anonymous) @ VM59 auth.js:65364 dispatch @ VM59 auth.js:66033 (anonymous) @ VM59 auth.js:72690 asyncGeneratorStep @ VM59 auth.js:72623 _next @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72625 onBeforeLogin @ VM59 auth.js:72694 (anonymous) @ VM59 auth.js:72752 asyncGeneratorStep @ VM59 auth.js:72623 _next @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72625 (anonymous) @ VM59 auth.js:72783 (anonymous) @ VM59 auth.js:65364 (anonymous) @ VM59 auth.js:65872 (anonymous) @ VM59 auth.js:80381 asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 handleSubmit @ VM59 auth.js:80419 handleSubmit @ VM59 auth.js:71541 callCallback @ VM59 auth.js:6679 invokeGuardedCallbackDev @ VM59 auth.js:6728 invokeGuardedCallback @ VM59 auth.js:6783 invokeGuardedCallbackAndCatchFirstError @ VM59 auth.js:6797 executeDispatch @ VM59 auth.js:6880 executeDispatchesInOrder @ VM59 auth.js:6905 executeDispatchesAndRelease @ VM59 auth.js:9769 executeDispatchesAndReleaseTopLevel @ VM59 auth.js:9778 forEachAccumulated @ VM59 auth.js:9750 runEventsInBatch @ VM59 auth.js:9795 runExtractedPluginEventsInBatch @ VM59 auth.js:10005 handleTopLevel @ VM59 auth.js:10049 batchedEventUpdates$1 @ VM59 auth.js:28393 batchedEventUpdates @ VM59 auth.js:7551 dispatchEventForLegacyPluginEventSystem @ VM59 auth.js:10059 attemptToDispatchEvent @ VM59 auth.js:10758 dispatchEvent @ VM59 auth.js:10680 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 discreteUpdates$1 @ VM59 auth.js:28409 discreteUpdates @ VM59 auth.js:7562 dispatchDiscreteEvent @ VM59 auth.js:10659 Show 43 more frames VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_DELETE_START VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_DELETE_SUCCESS VM59 auth.js:65278 @wireapp/webapp action SILENT_LOGOUT_SUCCESS VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_START VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_START VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_START VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_START VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_START VM59 auth.js:65278 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action COOKIE_SET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action SELF_FETCH_START VM59 auth.js:65278 @wireapp/webapp action SELF_SET_PASSWORD_STATE_START VM59 auth.js:65278 @wireapp/webapp action SELF_SET_PASSWORD_STATE_SUCCESS VM59 auth.js:65278 @wireapp/webapp action SELF_FETCH_SUCCESS VM59 auth.js:65278 @wireapp/webapp action CLIENT_INIT_START VM59 auth.js:65278 @wireapp/webapp action CLIENTS_FETCH_START VM59 auth.js:65278 @wireapp/webapp action COOKIE_GET_SUCCESS VM59 auth.js:65278 @wireapp/webapp action CLIENTS_FETCH_SUCCESS VM59 auth.js:65278 @wireapp/webapp action CLIENT_INIT_SUCCESS VM59 auth.js:65278 @wireapp/webapp action LOGIN_SUCCESS VM59 auth.js:6579 Warning: Cannot update a component from inside the function body of a different component. in HistoryInfo (created by ConnectFunction) in ConnectFunction (created by ProtectedHistoryInfo) in ProtectedHistoryInfo (created by Context.Consumer) in Route (created by Root) in Switch (created by Root) in Router (created by HashRouter) in HashRouter (created by Root) in div (created by Context.Consumer) in EmotionCssPropInternal (created by StyledAppContainer) in StyledAppContainer (created by StyledApp) in ThemeProvider (created by ThemeProvider) in ThemeProvider (created by StyledApp) in StyledApp (created by Root) in IntlProvider (created by Root) in Root (created by ConnectFunction) in ConnectFunction in Provider in AppContainer printWarning @ VM59 auth.js:6579 error @ VM59 auth.js:6551 warnAboutRenderPhaseUpdatesInDEV @ VM59 auth.js:29751 scheduleUpdateOnFiber @ VM59 auth.js:27687 dispatchAction @ VM59 auth.js:22173 (anonymous) @ VM59 auth.js:67729 listener @ VM59 auth.js:46421 (anonymous) @ VM59 auth.js:46439 notifyListeners @ VM59 auth.js:46438 setState @ VM59 auth.js:46827 (anonymous) @ VM59 auth.js:46930 confirmTransitionTo @ VM59 auth.js:46411 push @ VM59 auth.js:46914 HistoryInfo @ VM59 auth.js:79661 renderWithHooks @ VM59 auth.js:21316 mountIndeterminateComponent @ VM59 auth.js:23996 beginWork @ VM59 auth.js:25120 beginWork$1 @ VM59 auth.js:29701 performUnitOfWork @ VM59 auth.js:28679 workLoopSync @ VM59 auth.js:28652 performSyncWorkOnRoot @ VM59 auth.js:28278 (anonymous) @ VM59 auth.js:17602 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 flushSyncCallbackQueueImpl @ VM59 auth.js:17597 flushSyncCallbackQueue @ VM59 auth.js:17585 scheduleUpdateOnFiber @ VM59 auth.js:27721 enqueueSetState @ VM59 auth.js:19152 push../node_modules/react/cjs/react.development.js.Component.setState @ VM59 auth.js:63774 (anonymous) @ VM59 auth.js:60615 listener @ VM59 auth.js:46421 (anonymous) @ VM59 auth.js:46439 notifyListeners @ VM59 auth.js:46438 setState @ VM59 auth.js:46827 (anonymous) @ VM59 auth.js:46930 confirmTransitionTo @ VM59 auth.js:46411 push @ VM59 auth.js:46914 (anonymous) @ VM59 auth.js:80384 asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 Promise.then (async) asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 handleSubmit @ VM59 auth.js:80419 handleSubmit @ VM59 auth.js:71541 callCallback @ VM59 auth.js:6679 invokeGuardedCallbackDev @ VM59 auth.js:6728 invokeGuardedCallback @ VM59 auth.js:6783 invokeGuardedCallbackAndCatchFirstError @ VM59 auth.js:6797 executeDispatch @ VM59 auth.js:6880 executeDispatchesInOrder @ VM59 auth.js:6905 executeDispatchesAndRelease @ VM59 auth.js:9769 executeDispatchesAndReleaseTopLevel @ VM59 auth.js:9778 forEachAccumulated @ VM59 auth.js:9750 runEventsInBatch @ VM59 auth.js:9795 runExtractedPluginEventsInBatch @ VM59 auth.js:10005 handleTopLevel @ VM59 auth.js:10049 batchedEventUpdates$1 @ VM59 auth.js:28393 batchedEventUpdates @ VM59 auth.js:7551 dispatchEventForLegacyPluginEventSystem @ VM59 auth.js:10059 attemptToDispatchEvent @ VM59 auth.js:10758 dispatchEvent @ VM59 auth.js:10680 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 discreteUpdates$1 @ VM59 auth.js:28409 discreteUpdates @ VM59 auth.js:7562 dispatchDiscreteEvent @ VM59 auth.js:10659 Show 10 more frames VM59 auth.js:65278 @wireapp/webapp action AUTH_RESET_ERROR VM59 auth.js:6579 Warning: Cannot update a component from inside the function body of a different component. in SetEmail (created by ConnectFunction) in ConnectFunction (created by ProtectedSetEmail) in ProtectedSetEmail (created by Context.Consumer) in Route (created by Root) in Switch (created by Root) in Router (created by HashRouter) in HashRouter (created by Root) in div (created by Context.Consumer) in EmotionCssPropInternal (created by StyledAppContainer) in StyledAppContainer (created by StyledApp) in ThemeProvider (created by ThemeProvider) in ThemeProvider (created by StyledApp) in StyledApp (created by Root) in IntlProvider (created by Root) in Root (created by ConnectFunction) in ConnectFunction in Provider in AppContainer printWarning @ VM59 auth.js:6579 error @ VM59 auth.js:6551 warnAboutRenderPhaseUpdatesInDEV @ VM59 auth.js:29751 scheduleUpdateOnFiber @ VM59 auth.js:27687 dispatchAction @ VM59 auth.js:22173 (anonymous) @ VM59 auth.js:67729 listener @ VM59 auth.js:46421 (anonymous) @ VM59 auth.js:46439 notifyListeners @ VM59 auth.js:46438 setState @ VM59 auth.js:46827 (anonymous) @ VM59 auth.js:46930 confirmTransitionTo @ VM59 auth.js:46411 push @ VM59 auth.js:46914 SetEmail @ VM59 auth.js:81384 renderWithHooks @ VM59 auth.js:21316 mountIndeterminateComponent @ VM59 auth.js:23996 beginWork @ VM59 auth.js:25120 beginWork$1 @ VM59 auth.js:29701 performUnitOfWork @ VM59 auth.js:28679 workLoopSync @ VM59 auth.js:28652 performSyncWorkOnRoot @ VM59 auth.js:28278 (anonymous) @ VM59 auth.js:17602 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 flushSyncCallbackQueueImpl @ VM59 auth.js:17597 flushSyncCallbackQueue @ VM59 auth.js:17585 scheduleUpdateOnFiber @ VM59 auth.js:27721 enqueueSetState @ VM59 auth.js:19152 push../node_modules/react/cjs/react.development.js.Component.setState @ VM59 auth.js:63774 (anonymous) @ VM59 auth.js:60615 listener @ VM59 auth.js:46421 (anonymous) @ VM59 auth.js:46439 notifyListeners @ VM59 auth.js:46438 setState @ VM59 auth.js:46827 (anonymous) @ VM59 auth.js:46930 confirmTransitionTo @ VM59 auth.js:46411 push @ VM59 auth.js:46914 (anonymous) @ VM59 auth.js:80384 asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 Promise.then (async) asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 handleSubmit @ VM59 auth.js:80419 handleSubmit @ VM59 auth.js:71541 callCallback @ VM59 auth.js:6679 invokeGuardedCallbackDev @ VM59 auth.js:6728 invokeGuardedCallback @ VM59 auth.js:6783 invokeGuardedCallbackAndCatchFirstError @ VM59 auth.js:6797 executeDispatch @ VM59 auth.js:6880 executeDispatchesInOrder @ VM59 auth.js:6905 executeDispatchesAndRelease @ VM59 auth.js:9769 executeDispatchesAndReleaseTopLevel @ VM59 auth.js:9778 forEachAccumulated @ VM59 auth.js:9750 runEventsInBatch @ VM59 auth.js:9795 runExtractedPluginEventsInBatch @ VM59 auth.js:10005 handleTopLevel @ VM59 auth.js:10049 batchedEventUpdates$1 @ VM59 auth.js:28393 batchedEventUpdates @ VM59 auth.js:7551 dispatchEventForLegacyPluginEventSystem @ VM59 auth.js:10059 attemptToDispatchEvent @ VM59 auth.js:10758 dispatchEvent @ VM59 auth.js:10680 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 discreteUpdates$1 @ VM59 auth.js:28409 discreteUpdates @ VM59 auth.js:7562 dispatchDiscreteEvent @ VM59 auth.js:10659 Show 10 more frames VM59 auth.js:6579 Warning: Cannot update a component from inside the function body of a different component. in SetPassword (created by ConnectFunction) in ConnectFunction (created by ProtectedSetPassword) in ProtectedSetPassword (created by Context.Consumer) in Route (created by Root) in Switch (created by Root) in Router (created by HashRouter) in HashRouter (created by Root) in div (created by Context.Consumer) in EmotionCssPropInternal (created by StyledAppContainer) in StyledAppContainer (created by StyledApp) in ThemeProvider (created by ThemeProvider) in ThemeProvider (created by StyledApp) in StyledApp (created by Root) in IntlProvider (created by Root) in Root (created by ConnectFunction) in ConnectFunction in Provider in AppContainer printWarning @ VM59 auth.js:6579 error @ VM59 auth.js:6551 warnAboutRenderPhaseUpdatesInDEV @ VM59 auth.js:29751 scheduleUpdateOnFiber @ VM59 auth.js:27687 dispatchAction @ VM59 auth.js:22173 (anonymous) @ VM59 auth.js:67729 listener @ VM59 auth.js:46421 (anonymous) @ VM59 auth.js:46439 notifyListeners @ VM59 auth.js:46438 setState @ VM59 auth.js:46827 (anonymous) @ VM59 auth.js:46930 confirmTransitionTo @ VM59 auth.js:46411 push @ VM59 auth.js:46914 SetPassword @ VM59 auth.js:81772 renderWithHooks @ VM59 auth.js:21316 mountIndeterminateComponent @ VM59 auth.js:23996 beginWork @ VM59 auth.js:25120 beginWork$1 @ VM59 auth.js:29701 performUnitOfWork @ VM59 auth.js:28679 workLoopSync @ VM59 auth.js:28652 performSyncWorkOnRoot @ VM59 auth.js:28278 (anonymous) @ VM59 auth.js:17602 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 flushSyncCallbackQueueImpl @ VM59 auth.js:17597 flushSyncCallbackQueue @ VM59 auth.js:17585 scheduleUpdateOnFiber @ VM59 auth.js:27721 enqueueSetState @ VM59 auth.js:19152 push../node_modules/react/cjs/react.development.js.Component.setState @ VM59 auth.js:63774 (anonymous) @ VM59 auth.js:60615 listener @ VM59 auth.js:46421 (anonymous) @ VM59 auth.js:46439 notifyListeners @ VM59 auth.js:46438 setState @ VM59 auth.js:46827 (anonymous) @ VM59 auth.js:46930 confirmTransitionTo @ VM59 auth.js:46411 push @ VM59 auth.js:46914 (anonymous) @ VM59 auth.js:80384 asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 Promise.then (async) asyncGeneratorStep @ VM59 auth.js:80226 _next @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 (anonymous) @ VM59 auth.js:80228 handleSubmit @ VM59 auth.js:80419 handleSubmit @ VM59 auth.js:71541 callCallback @ VM59 auth.js:6679 invokeGuardedCallbackDev @ VM59 auth.js:6728 invokeGuardedCallback @ VM59 auth.js:6783 invokeGuardedCallbackAndCatchFirstError @ VM59 auth.js:6797 executeDispatch @ VM59 auth.js:6880 executeDispatchesInOrder @ VM59 auth.js:6905 executeDispatchesAndRelease @ VM59 auth.js:9769 executeDispatchesAndReleaseTopLevel @ VM59 auth.js:9778 forEachAccumulated @ VM59 auth.js:9750 runEventsInBatch @ VM59 auth.js:9795 runExtractedPluginEventsInBatch @ VM59 auth.js:10005 handleTopLevel @ VM59 auth.js:10049 batchedEventUpdates$1 @ VM59 auth.js:28393 batchedEventUpdates @ VM59 auth.js:7551 dispatchEventForLegacyPluginEventSystem @ VM59 auth.js:10059 attemptToDispatchEvent @ VM59 auth.js:10758 dispatchEvent @ VM59 auth.js:10680 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 discreteUpdates$1 @ VM59 auth.js:28409 discreteUpdates @ VM59 auth.js:7562 dispatchDiscreteEvent @ VM59 auth.js:10659 Show 10 more frames VM59 auth.js:65278 @wireapp/webapp action CONSENT_GET_START VM59 auth.js:65278 @wireapp/webapp action COOKIE_REMOVE_SUCCESS VM59 auth.js:65278 @wireapp/webapp action COOKIE_POLLING_STOP VM59 auth.js:65278 @wireapp/webapp action CONSENT_GET_SUCCESS VM59 auth.js:6579 Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function. in SetHandle (created by ConnectFunction) in ConnectFunction (created by ProtectedSetHandle) in ProtectedSetHandle (created by Context.Consumer) printWarning @ VM59 auth.js:6579 error @ VM59 auth.js:6551 warnAboutUpdateOnUnmountedFiberInDEV @ VM59 auth.js:29683 scheduleUpdateOnFiber @ VM59 auth.js:27691 dispatchAction @ VM59 auth.js:22173 (anonymous) @ VM59 auth.js:81550 asyncGeneratorStep @ VM59 auth.js:81479 _next @ VM59 auth.js:81481 Promise.then (async) asyncGeneratorStep @ VM59 auth.js:81479 _next @ VM59 auth.js:81481 (anonymous) @ VM59 auth.js:81481 (anonymous) @ VM59 auth.js:81481 (anonymous) @ VM59 auth.js:81554 commitHookEffectListMount @ VM59 auth.js:26255 commitPassiveHookEffects @ VM59 auth.js:26293 callCallback @ VM59 auth.js:6679 invokeGuardedCallbackDev @ VM59 auth.js:6728 invokeGuardedCallback @ VM59 auth.js:6783 flushPassiveEffectsImpl @ VM59 auth.js:29375 unstable_runWithPriority @ VM59 auth.js:67172 runWithPriority$1 @ VM59 auth.js:17552 flushPassiveEffects @ VM59 auth.js:29342 (anonymous) @ VM59 auth.js:29221 workLoop @ VM59 auth.js:67116 flushWork @ VM59 auth.js:67071 performWorkUntilDeadline @ VM59 auth.js:66683 :8081/:1 The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. Navigated to https://localhost:8081/ VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'camera' is 'prompt' VM87 app.js:57687 [HMR] connected VM85 vendor.js:147574 @wireapp/webapp/App [2020-09-12 17:52:17] ServiceWorker registration successful with scope: https://localhost:8081/ VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'geolocation' is 'prompt' VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'microphone' is 'prompt' VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'notifications' is 'prompt' VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'camera' is 'prompt' VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'geolocation' is 'prompt' VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'microphone' is 'prompt' VM87 app.js:57687 @wireapp/webapp/PermissionRepository [2020-09-12 17:52:17] Permission state for 'notifications' is 'prompt' VM87 app.js:71567 [HMR] bundle has 1 warnings VM87 app.js:57687 /min/app.js is 10.9 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit. VM85 vendor.js:147574 @wireapp/webapp/MediaDevicesHandler [2020-09-12 17:52:17] Updated MediaDevice list (3) [InputDeviceInfo, InputDeviceInfo, MediaDeviceInfo] VM87 app.js:57687 POST https://prod-nginz-https.wire.com/access 403 (Forbidden) enhanced @ VM87 app.js:57687 dispatchXhrRequest @ VM85 vendor.js:43045 xhrAdapter @ VM85 vendor.js:42879 dispatchRequest @ VM85 vendor.js:43525 Promise.then (async) request @ VM85 vendor.js:43302 wrap @ VM85 vendor.js:43891 (anonymous) @ VM85 vendor.js:6361 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM85 vendor.js:7628 (anonymous) @ VM85 vendor.js:6422 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 postAccess @ VM85 vendor.js:6412 (anonymous) @ VM85 vendor.js:6406 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 refreshAccessToken @ VM85 vendor.js:6401 (anonymous) @ VM85 vendor.js:1028 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 init @ VM85 vendor.js:1026 init @ VM87 app.js:77702 (anonymous) @ VM87 app.js:112740 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM85 vendor.js:147574 @wireapp/webapp/App [2020-09-12 17:52:18] Logout triggered by 'not_signed_in': Disconnecting user from the backend. VM87 app.js:57687 @wireapp/webapp/App [2020-09-12 17:52:18] Could not initialize app version 'dev': Authentication failed because the cookie is missing. {error: MissingCookieError: Authentication failed because the cookie is missing. at Function.get ERRORS…} enhanced @ VM87 app.js:57687 t. @ VM85 vendor.js:147574 _appInitFailure @ VM87 app.js:112863 (anonymous) @ VM87 app.js:112810 asyncGeneratorStep @ VM87 app.js:112407 _throw @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM87 app.js:57687 @wireapp/webapp/App [2020-09-12 17:52:18] Caused by: Authentication failed because the cookie is missing. MissingCookieError: Authentication failed because the cookie is missing. at Function.get ERRORS [as ERRORS] (https://localhost:8081/min/vendor.js?2020-09-12-20-45:6127:39) at Function.map (https://localhost:8081/min/vendor.js?2020-09-12-20-45:6162:52) at HttpClient. (https://localhost:8081/min/vendor.js?2020-09-12-20-45:6379:63) at Generator.throw () at rejected (https://localhost:8081/min/vendor.js?2020-09-12-20-45:6288:65) enhanced @ VM87 app.js:57687 t. @ VM85 vendor.js:147574 _appInitFailure @ VM87 app.js:112914 (anonymous) @ VM87 app.js:112810 asyncGeneratorStep @ VM87 app.js:112407 _throw @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM85 vendor.js:147574 @wireapp/webapp/App [2020-09-12 17:52:18] Logout triggered by 'app_init': Disconnecting user from the backend. VM87 app.js:57687 POST https://prod-nginz-https.wire.com/access/logout 403 (Forbidden) enhanced @ VM87 app.js:57687 dispatchXhrRequest @ VM85 vendor.js:43045 xhrAdapter @ VM85 vendor.js:42879 dispatchRequest @ VM85 vendor.js:43525 Promise.then (async) request @ VM85 vendor.js:43302 wrap @ VM85 vendor.js:43891 (anonymous) @ VM85 vendor.js:6361 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM85 vendor.js:7628 (anonymous) @ VM85 vendor.js:2056 (anonymous) @ VM85 vendor.js:1957 push../node_modules/@wireapp/api-client/dist/auth/AuthAPI.js.__awaiter @ VM85 vendor.js:1953 postLogout @ VM85 vendor.js:2050 (anonymous) @ VM87 app.js:77710 asyncGeneratorStep @ VM87 app.js:77651 _next @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 logout @ VM87 app.js:77715 _logoutOnBackend @ VM87 app.js:113193 logout @ VM87 app.js:113207 (anonymous) @ VM87 app.js:112563 emit @ VM85 vendor.js:130496 (anonymous) @ VM85 vendor.js:950 fulfilled @ VM85 vendor.js:889 Promise.then (async) step @ VM85 vendor.js:891 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 onInvalidCredentials @ VM85 vendor.js:944 emit @ VM85 vendor.js:130496 (anonymous) @ VM85 vendor.js:6383 rejected @ VM85 vendor.js:6288 Promise.then (async) step @ VM85 vendor.js:6289 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM85 vendor.js:7628 (anonymous) @ VM85 vendor.js:6422 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 postAccess @ VM85 vendor.js:6412 (anonymous) @ VM85 vendor.js:6406 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 refreshAccessToken @ VM85 vendor.js:6401 (anonymous) @ VM85 vendor.js:1028 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 init @ VM85 vendor.js:1026 init @ VM87 app.js:77702 (anonymous) @ VM87 app.js:112740 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM87 app.js:57687 POST https://prod-nginz-https.wire.com/access/logout 403 (Forbidden) enhanced @ VM87 app.js:57687 dispatchXhrRequest @ VM85 vendor.js:43045 xhrAdapter @ VM85 vendor.js:42879 dispatchRequest @ VM85 vendor.js:43525 Promise.then (async) request @ VM85 vendor.js:43302 wrap @ VM85 vendor.js:43891 (anonymous) @ VM85 vendor.js:6361 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM85 vendor.js:7628 (anonymous) @ VM85 vendor.js:2056 (anonymous) @ VM85 vendor.js:1957 push../node_modules/@wireapp/api-client/dist/auth/AuthAPI.js.__awaiter @ VM85 vendor.js:1953 postLogout @ VM85 vendor.js:2050 (anonymous) @ VM87 app.js:77710 asyncGeneratorStep @ VM87 app.js:77651 _next @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 logout @ VM87 app.js:77715 _logoutOnBackend @ VM87 app.js:113193 logout @ VM87 app.js:113207 _appInitFailure @ VM87 app.js:112923 (anonymous) @ VM87 app.js:112810 asyncGeneratorStep @ VM87 app.js:112407 _throw @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM87 app.js:57687 @wireapp/webapp/AuthRepository [2020-09-12 17:52:18] Log out on backend failed: Missing cookie and token {code: 403, message: "Missing cookie and token", label: "invalid-credentials"} enhanced @ VM87 app.js:57687 t. @ VM85 vendor.js:147574 (anonymous) @ VM87 app.js:77713 asyncGeneratorStep @ VM87 app.js:77651 _throw @ VM87 app.js:77653 Promise.then (async) asyncGeneratorStep @ VM87 app.js:77651 _next @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 logout @ VM87 app.js:77715 _logoutOnBackend @ VM87 app.js:113193 logout @ VM87 app.js:113207 (anonymous) @ VM87 app.js:112563 emit @ VM85 vendor.js:130496 (anonymous) @ VM85 vendor.js:950 fulfilled @ VM85 vendor.js:889 Promise.then (async) step @ VM85 vendor.js:891 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 onInvalidCredentials @ VM85 vendor.js:944 emit @ VM85 vendor.js:130496 (anonymous) @ VM85 vendor.js:6383 rejected @ VM85 vendor.js:6288 Promise.then (async) step @ VM85 vendor.js:6289 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM85 vendor.js:7628 (anonymous) @ VM85 vendor.js:6422 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 postAccess @ VM85 vendor.js:6412 (anonymous) @ VM85 vendor.js:6406 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 refreshAccessToken @ VM85 vendor.js:6401 (anonymous) @ VM85 vendor.js:1028 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 init @ VM85 vendor.js:1026 init @ VM87 app.js:77702 (anonymous) @ VM87 app.js:112740 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM85 vendor.js:147574 @wireapp/webapp/App [2020-09-12 17:52:18] Redirecting to login after connectivity verification. Reason: not_signed_in VM85 vendor.js:147574 @wireapp/webapp/BackendClient [2020-09-12 17:52:18] Connectivity check requested by 'BackendClient.CONNECTIVITY_CHECK_TRIGGER.LOGIN_REDIRECT' VM87 app.js:57687 @wireapp/webapp/AuthRepository [2020-09-12 17:52:18] Log out on backend failed: Missing cookie and token {code: 403, message: "Missing cookie and token", label: "invalid-credentials"} enhanced @ VM87 app.js:57687 t. @ VM85 vendor.js:147574 (anonymous) @ VM87 app.js:77713 asyncGeneratorStep @ VM87 app.js:77651 _throw @ VM87 app.js:77653 Promise.then (async) asyncGeneratorStep @ VM87 app.js:77651 _next @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 (anonymous) @ VM87 app.js:77653 logout @ VM87 app.js:77715 _logoutOnBackend @ VM87 app.js:113193 logout @ VM87 app.js:113207 _appInitFailure @ VM87 app.js:112923 (anonymous) @ VM87 app.js:112810 asyncGeneratorStep @ VM87 app.js:112407 _throw @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM85 vendor.js:147574 @wireapp/webapp/App [2020-09-12 17:52:18] Redirecting to login after connectivity verification. Reason: app_init VM85 vendor.js:147574 @wireapp/webapp/BackendClient [2020-09-12 17:52:18] Connectivity check requested by 'BackendClient.CONNECTIVITY_CHECK_TRIGGER.LOGIN_REDIRECT' VM87 app.js:57687 GET https://prod-nginz-https.wire.com/self 401 (Unauthorized) enhanced @ VM87 app.js:57687 dispatchXhrRequest @ VM85 vendor.js:43045 xhrAdapter @ VM85 vendor.js:42879 dispatchRequest @ VM85 vendor.js:43525 Promise.then (async) request @ VM85 vendor.js:43302 wrap @ VM85 vendor.js:43891 (anonymous) @ VM85 vendor.js:6361 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 (anonymous) @ VM85 vendor.js:6430 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 sendRequest @ VM85 vendor.js:6427 sendJSON @ VM85 vendor.js:6435 (anonymous) @ VM85 vendor.js:7362 (anonymous) @ VM85 vendor.js:7260 push../node_modules/@wireapp/api-client/dist/self/SelfAPI.js.__awaiter @ VM85 vendor.js:7256 getSelf @ VM85 vendor.js:7357 (anonymous) @ VM87 app.js:118653 asyncGeneratorStep @ VM87 app.js:118543 _next @ VM87 app.js:118545 (anonymous) @ VM87 app.js:118545 (anonymous) @ VM87 app.js:118545 status @ VM87 app.js:118654 (anonymous) @ VM87 app.js:118690 asyncGeneratorStep @ VM87 app.js:118543 _next @ VM87 app.js:118545 (anonymous) @ VM87 app.js:118545 (anonymous) @ VM87 app.js:118545 _checkStatus @ VM87 app.js:118717 setTimeout (async) (anonymous) @ VM87 app.js:118726 asyncGeneratorStep @ VM87 app.js:118543 _next @ VM87 app.js:118545 (anonymous) @ VM87 app.js:118545 (anonymous) @ VM87 app.js:118545 executeOnConnectivity @ VM87 app.js:118730 _redirectToLogin @ VM87 app.js:113248 _redirectToLogin @ VM87 app.js:113128 (anonymous) @ VM87 app.js:113183 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 _logout @ VM87 app.js:113187 (anonymous) @ VM87 app.js:113193 Promise.then (async) _logoutOnBackend @ VM87 app.js:113193 logout @ VM87 app.js:113207 (anonymous) @ VM87 app.js:112563 emit @ VM85 vendor.js:130496 (anonymous) @ VM85 vendor.js:950 fulfilled @ VM85 vendor.js:889 Promise.then (async) step @ VM85 vendor.js:891 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 onInvalidCredentials @ VM85 vendor.js:944 emit @ VM85 vendor.js:130496 (anonymous) @ VM85 vendor.js:6383 rejected @ VM85 vendor.js:6288 Promise.then (async) step @ VM85 vendor.js:6289 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 _sendRequest @ VM85 vendor.js:6349 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ VM85 vendor.js:7628 (anonymous) @ VM85 vendor.js:6422 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 postAccess @ VM85 vendor.js:6412 (anonymous) @ VM85 vendor.js:6406 (anonymous) @ VM85 vendor.js:6290 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ VM85 vendor.js:6286 refreshAccessToken @ VM85 vendor.js:6401 (anonymous) @ VM85 vendor.js:1028 (anonymous) @ VM85 vendor.js:892 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ VM85 vendor.js:888 init @ VM85 vendor.js:1026 init @ VM87 app.js:77702 (anonymous) @ VM87 app.js:112740 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 Promise.then (async) asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 initApp @ VM87 app.js:112812 App @ VM87 app.js:112591 (anonymous) @ VM87 app.js:113327 asyncGeneratorStep @ VM87 app.js:112407 _next @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 (anonymous) @ VM87 app.js:112409 mightThrow @ VM85 vendor.js:140242 process @ VM85 vendor.js:140310 setTimeout (async) (anonymous) @ VM85 vendor.js:140348 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 fire @ VM85 vendor.js:140114 fire @ VM85 vendor.js:139976 fireWith @ VM85 vendor.js:140106 ready @ VM85 vendor.js:140586 completed @ VM85 vendor.js:140596 VM85 vendor.js:147574 @wireapp/webapp/BackendClient [2020-09-12 17:52:18] Connectivity verified by server error 'undefined' Error: Request failed with status code 401 at createError (VM85 vendor.js:43459) at settle (VM85 vendor.js:43720) at XMLHttpRequest.handleLoad (VM85 vendor.js:42928) localhost/:1 The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. VM102 auth.js:31519 Download the React DevTools for a better development experience: https://fb.me/react-devtools VM102 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_START VM102 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_COOKIE_START VM102 auth.js:65278 @wireapp/webapp action RUNTIME_CONFIRM_SUPPORTED_BROWSER VM102 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_FINISH VM102 auth.js:65278 @wireapp/webapp action RUNTIME_CHECK_COOKIE_FINISH Navigated to https://localhost:8081/auth/ VM102 auth.js:65278 @wireapp/webapp action GET_SSO_SETTINGS_START VM102 auth.js:65278 @wireapp/webapp action COOKIE_POLLING_START VM102 auth.js:67918 [HMR] connected VM102 auth.js:65278 @wireapp/webapp action GET_SSO_SETTINGS_SUCCESS VM102 auth.js:68018 [HMR] bundle has 1 warnings VM102 auth.js:68019 /min/app.js is 10.9 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit. localhost/:31 GET https://localhost:8081/__webpack_hmr net::ERR_INCOMPLETE_CHUNKED_ENCODING 200 (OK) 26:8081/__webpack_hmr:1 GET https://localhost:8081/__webpack_hmr net::ERR_CONNECTION_REFUSED :8081/min/auth.js?2020-09-12-20-45:65278 @wireapp/webapp action COOKIE_POLLING_STOP :8081/min/auth.js?2020-09-12-20-45:67918 [HMR] connected :8081/min/auth.js?2020-09-12-20-45:68018 [HMR] bundle has 1 warnings :8081/min/auth.js?2020-09-12-20-45:68019 /min/app.js is 11.1 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit. :8081/min/vendor.js?2020-09-12-20-45:171623 [HMR] Checking for updates on the server... The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. :8081/min/runtime.js?2020-09-12-20-45:83 GET https://localhost:8081/2514b673d8a18618e004.hot-update.json 404 (Not Found) (anonymous) @ :8081/min/runtime.js?2020-09-12-20-45:83 hotDownloadManifest @ :8081/min/runtime.js?2020-09-12-20-45:74 hotCheck @ :8081/min/runtime.js?2020-09-12-20-45:317 check @ :8081/min/vendor.js?2020-09-12-20-45:171659 push../node_modules/webpack-hot-middleware/process-update.js.module.exports @ :8081/min/vendor.js?2020-09-12-20-45:171624 processMessage @ :8081/min/auth.js?2020-09-12-20-45:68102 handleMessage @ :8081/min/auth.js?2020-09-12-20-45:67962 handleMessage @ :8081/min/auth.js?2020-09-12-20-45:67925 :8081/min/vendor.js?2020-09-12-20-45:171633 [HMR] Cannot find update (Full reload needed) cb @ :8081/min/vendor.js?2020-09-12-20-45:171633 (anonymous) @ :8081/min/vendor.js?2020-09-12-20-45:171663 Promise.then (async) check @ :8081/min/vendor.js?2020-09-12-20-45:171662 push../node_modules/webpack-hot-middleware/process-update.js.module.exports @ :8081/min/vendor.js?2020-09-12-20-45:171624 processMessage @ :8081/min/auth.js?2020-09-12-20-45:68102 handleMessage @ :8081/min/auth.js?2020-09-12-20-45:67962 handleMessage @ :8081/min/auth.js?2020-09-12-20-45:67925 :8081/min/vendor.js?2020-09-12-20-45:171634 [HMR] (Probably because of restarting the server) cb @ :8081/min/vendor.js?2020-09-12-20-45:171634 (anonymous) @ :8081/min/vendor.js?2020-09-12-20-45:171663 Promise.then (async) check @ :8081/min/vendor.js?2020-09-12-20-45:171662 push../node_modules/webpack-hot-middleware/process-update.js.module.exports @ :8081/min/vendor.js?2020-09-12-20-45:171624 processMessage @ :8081/min/auth.js?2020-09-12-20-45:68102 handleMessage @ :8081/min/auth.js?2020-09-12-20-45:67962 handleMessage @ :8081/min/auth.js?2020-09-12-20-45:67925 localhost/:1 The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. Navigated to https://localhost:8081/auth/ auth.js:32491 Download the React DevTools for a better development experience: https://fb.me/react-devtools auth.js:65579 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_START auth.js:65579 @wireapp/webapp action RUNTIME_CHECK_COOKIE_START auth.js:65579 @wireapp/webapp action RUNTIME_CONFIRM_SUPPORTED_BROWSER auth.js:65579 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_FINISH auth.js:65579 @wireapp/webapp action RUNTIME_CHECK_COOKIE_FINISH auth.js:65579 @wireapp/webapp action GET_SSO_SETTINGS_START auth.js:65579 @wireapp/webapp action COOKIE_POLLING_START auth.js:68221 [HMR] connected auth.js:68321 [HMR] bundle has 1 warnings auth.js:68322 /min/app.js is 11.1 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit. auth.js:65579 @wireapp/webapp action GET_SSO_SETTINGS_SUCCESS auth.js:65579 @wireapp/webapp action AUTH_RESET_ERROR auth.js:65579 @wireapp/webapp action LOGIN_START auth.js:65579 @wireapp/webapp action LOGOUT_START vendor.js:37616 POST https://prod-nginz-https.wire.com/access/logout 403 (Forbidden) dispatchXhrRequest @ xhr.js:178 xhrAdapter @ xhr.js:12 dispatchRequest @ dispatchRequest.js:52 Promise.then (async) request @ Axios.js:61 wrap @ bind.js:9 (anonymous) @ HttpClient.js:97 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ AuthAPI.js:125 (anonymous) @ AuthAPI.js:26 push../node_modules/@wireapp/api-client/dist/auth/AuthAPI.js.__awaiter @ AuthAPI.js:22 postLogout @ AuthAPI.js:119 (anonymous) @ APIClient.js:194 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 logout @ APIClient.js:190 (anonymous) @ Account.js:278 (anonymous) @ Account.js:45 push../node_modules/@wireapp/core/dist/Account.js.__awaiter @ Account.js:41 logout @ Account.js:277 (anonymous) @ AuthAction.ts:398 asyncGeneratorStep @ auth.js?2020.09.12.21.32:72745 _next @ auth.js?2020.09.12.21.32:72747 (anonymous) @ auth.js?2020.09.12.21.32:72747 (anonymous) @ auth.js?2020.09.12.21.32:72747 (anonymous) @ AuthAction.ts:395 (anonymous) @ index.js:8 dispatch @ redux.js:638 (anonymous) @ AuthAction.ts:54 asyncGeneratorStep @ auth.js?2020.09.12.21.32:72745 _next @ auth.js?2020.09.12.21.32:72747 (anonymous) @ auth.js?2020.09.12.21.32:72747 (anonymous) @ auth.js?2020.09.12.21.32:72747 onBeforeLogin @ AuthAction.ts:53 (anonymous) @ AuthAction.ts:80 asyncGeneratorStep @ auth.js?2020.09.12.21.32:72745 _next @ auth.js?2020.09.12.21.32:72747 (anonymous) @ auth.js?2020.09.12.21.32:72747 (anonymous) @ auth.js?2020.09.12.21.32:72747 (anonymous) @ AuthAction.ts:73 (anonymous) @ index.js:8 (anonymous) @ redux.js:477 (anonymous) @ Login.tsx:152 asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 handleSubmit @ Login.tsx:140 handleSubmit @ LoginForm.tsx:74 callCallback @ react-dom.development.js:189 invokeGuardedCallbackDev @ react-dom.development.js:238 invokeGuardedCallback @ react-dom.development.js:293 invokeGuardedCallbackAndCatchFirstError @ react-dom.development.js:307 executeDispatch @ react-dom.development.js:390 executeDispatchesInOrder @ react-dom.development.js:415 executeDispatchesAndRelease @ react-dom.development.js:3279 executeDispatchesAndReleaseTopLevel @ react-dom.development.js:3288 forEachAccumulated @ react-dom.development.js:3260 runEventsInBatch @ react-dom.development.js:3305 runExtractedPluginEventsInBatch @ react-dom.development.js:3515 handleTopLevel @ react-dom.development.js:3559 batchedEventUpdates$1 @ react-dom.development.js:21903 batchedEventUpdates @ react-dom.development.js:1061 dispatchEventForLegacyPluginEventSystem @ react-dom.development.js:3569 attemptToDispatchEvent @ react-dom.development.js:4268 dispatchEvent @ react-dom.development.js:4190 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 discreteUpdates$1 @ react-dom.development.js:21919 discreteUpdates @ react-dom.development.js:1072 dispatchDiscreteEvent @ react-dom.development.js:4169 Show 43 more frames auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_DELETE_START auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_DELETE_SUCCESS auth.js:65579 @wireapp/webapp action SILENT_LOGOUT_SUCCESS auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_START auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_START auth.js:65579 prev state {authState: {…}, clientState: {…}, conversationState: {…}, cookieState: {…}, inviteState: {…}, …} auth.js:65579 action {type: "LOCAL_STORAGE_SET_START"} auth.js:65579 next state {authState: {…}, clientState: {…}, conversationState: {…}, cookieState: {…}, inviteState: {…}, …} auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_START auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_START auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_START auth.js:65579 @wireapp/webapp action LOCAL_STORAGE_SET_SUCCESS auth.js:65579 @wireapp/webapp action COOKIE_SET_SUCCESS auth.js:65579 @wireapp/webapp action SELF_FETCH_START auth.js:65579 @wireapp/webapp action COOKIE_GET_SUCCESS auth.js:65579 @wireapp/webapp action SELF_SET_PASSWORD_STATE_START auth.js:65579 @wireapp/webapp action SELF_SET_PASSWORD_STATE_SUCCESS auth.js:65579 @wireapp/webapp action SELF_FETCH_SUCCESS auth.js:65579 @wireapp/webapp action CLIENT_INIT_START auth.js:65579 @wireapp/webapp action CLIENTS_FETCH_START auth.js:65579 @wireapp/webapp action CLIENTS_FETCH_SUCCESS auth.js:65579 @wireapp/webapp action CLIENT_INIT_SUCCESS auth.js:65579 @wireapp/webapp action LOGIN_SUCCESS auth.js:7551 Warning: Cannot update a component from inside the function body of a different component. in HistoryInfo (created by ConnectFunction) in ConnectFunction (created by ProtectedHistoryInfo) in ProtectedHistoryInfo (created by Context.Consumer) in Route (created by Root) in Switch (created by Root) in Router (created by HashRouter) in HashRouter (created by Root) in div (created by Context.Consumer) in EmotionCssPropInternal (created by StyledAppContainer) in StyledAppContainer (created by StyledApp) in ThemeProvider (created by ThemeProvider) in ThemeProvider (created by StyledApp) in StyledApp (created by Root) in IntlProvider (created by Root) in Root (created by ConnectFunction) in ConnectFunction in Provider in AppContainer printWarning @ react-dom.development.js:89 error @ react-dom.development.js:61 warnAboutRenderPhaseUpdatesInDEV @ react-dom.development.js:23261 scheduleUpdateOnFiber @ react-dom.development.js:21197 dispatchAction @ react-dom.development.js:15683 (anonymous) @ use-force-update.js:23 listener @ history.js:155 (anonymous) @ history.js:173 notifyListeners @ history.js:172 setState @ history.js:561 (anonymous) @ history.js:664 confirmTransitionTo @ history.js:145 push @ history.js:648 HistoryInfo @ HistoryInfo.tsx:56 renderWithHooks @ react-dom.development.js:14826 mountIndeterminateComponent @ react-dom.development.js:17506 beginWork @ react-dom.development.js:18630 beginWork$1 @ react-dom.development.js:23211 performUnitOfWork @ react-dom.development.js:22189 workLoopSync @ react-dom.development.js:22162 performSyncWorkOnRoot @ react-dom.development.js:21788 (anonymous) @ react-dom.development.js:11112 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 flushSyncCallbackQueueImpl @ react-dom.development.js:11107 flushSyncCallbackQueue @ react-dom.development.js:11095 scheduleUpdateOnFiber @ react-dom.development.js:21231 enqueueSetState @ react-dom.development.js:12662 push../node_modules/react/cjs/react.development.js.Component.setState @ react.development.js:471 (anonymous) @ react-router.js:74 listener @ history.js:155 (anonymous) @ history.js:173 notifyListeners @ history.js:172 setState @ history.js:561 (anonymous) @ history.js:664 confirmTransitionTo @ history.js:145 push @ history.js:648 (anonymous) @ Login.tsx:155 asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 Promise.then (async) asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 handleSubmit @ Login.tsx:140 handleSubmit @ LoginForm.tsx:74 callCallback @ react-dom.development.js:189 invokeGuardedCallbackDev @ react-dom.development.js:238 invokeGuardedCallback @ react-dom.development.js:293 invokeGuardedCallbackAndCatchFirstError @ react-dom.development.js:307 executeDispatch @ react-dom.development.js:390 executeDispatchesInOrder @ react-dom.development.js:415 executeDispatchesAndRelease @ react-dom.development.js:3279 executeDispatchesAndReleaseTopLevel @ react-dom.development.js:3288 forEachAccumulated @ react-dom.development.js:3260 runEventsInBatch @ react-dom.development.js:3305 runExtractedPluginEventsInBatch @ react-dom.development.js:3515 handleTopLevel @ react-dom.development.js:3559 batchedEventUpdates$1 @ react-dom.development.js:21903 batchedEventUpdates @ react-dom.development.js:1061 dispatchEventForLegacyPluginEventSystem @ react-dom.development.js:3569 attemptToDispatchEvent @ react-dom.development.js:4268 dispatchEvent @ react-dom.development.js:4190 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 discreteUpdates$1 @ react-dom.development.js:21919 discreteUpdates @ react-dom.development.js:1072 dispatchDiscreteEvent @ react-dom.development.js:4169 Show 10 more frames auth.js:65579 @wireapp/webapp action AUTH_RESET_ERROR auth.js:7551 Warning: Cannot update a component from inside the function body of a different component. in SetEmail (created by ConnectFunction) in ConnectFunction (created by ProtectedSetEmail) in ProtectedSetEmail (created by Context.Consumer) in Route (created by Root) in Switch (created by Root) in Router (created by HashRouter) in HashRouter (created by Root) in div (created by Context.Consumer) in EmotionCssPropInternal (created by StyledAppContainer) in StyledAppContainer (created by StyledApp) in ThemeProvider (created by ThemeProvider) in ThemeProvider (created by StyledApp) in StyledApp (created by Root) in IntlProvider (created by Root) in Root (created by ConnectFunction) in ConnectFunction in Provider in AppContainer printWarning @ react-dom.development.js:89 error @ react-dom.development.js:61 warnAboutRenderPhaseUpdatesInDEV @ react-dom.development.js:23261 scheduleUpdateOnFiber @ react-dom.development.js:21197 dispatchAction @ react-dom.development.js:15683 (anonymous) @ use-force-update.js:23 listener @ history.js:155 (anonymous) @ history.js:173 notifyListeners @ history.js:172 setState @ history.js:561 (anonymous) @ history.js:664 confirmTransitionTo @ history.js:145 push @ history.js:648 SetEmail @ SetEmail.tsx:69 renderWithHooks @ react-dom.development.js:14826 mountIndeterminateComponent @ react-dom.development.js:17506 beginWork @ react-dom.development.js:18630 beginWork$1 @ react-dom.development.js:23211 performUnitOfWork @ react-dom.development.js:22189 workLoopSync @ react-dom.development.js:22162 performSyncWorkOnRoot @ react-dom.development.js:21788 (anonymous) @ react-dom.development.js:11112 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 flushSyncCallbackQueueImpl @ react-dom.development.js:11107 flushSyncCallbackQueue @ react-dom.development.js:11095 scheduleUpdateOnFiber @ react-dom.development.js:21231 enqueueSetState @ react-dom.development.js:12662 push../node_modules/react/cjs/react.development.js.Component.setState @ react.development.js:471 (anonymous) @ react-router.js:74 listener @ history.js:155 (anonymous) @ history.js:173 notifyListeners @ history.js:172 setState @ history.js:561 (anonymous) @ history.js:664 confirmTransitionTo @ history.js:145 push @ history.js:648 (anonymous) @ Login.tsx:155 asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 Promise.then (async) asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 handleSubmit @ Login.tsx:140 handleSubmit @ LoginForm.tsx:74 callCallback @ react-dom.development.js:189 invokeGuardedCallbackDev @ react-dom.development.js:238 invokeGuardedCallback @ react-dom.development.js:293 invokeGuardedCallbackAndCatchFirstError @ react-dom.development.js:307 executeDispatch @ react-dom.development.js:390 executeDispatchesInOrder @ react-dom.development.js:415 executeDispatchesAndRelease @ react-dom.development.js:3279 executeDispatchesAndReleaseTopLevel @ react-dom.development.js:3288 forEachAccumulated @ react-dom.development.js:3260 runEventsInBatch @ react-dom.development.js:3305 runExtractedPluginEventsInBatch @ react-dom.development.js:3515 handleTopLevel @ react-dom.development.js:3559 batchedEventUpdates$1 @ react-dom.development.js:21903 batchedEventUpdates @ react-dom.development.js:1061 dispatchEventForLegacyPluginEventSystem @ react-dom.development.js:3569 attemptToDispatchEvent @ react-dom.development.js:4268 dispatchEvent @ react-dom.development.js:4190 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 discreteUpdates$1 @ react-dom.development.js:21919 discreteUpdates @ react-dom.development.js:1072 dispatchDiscreteEvent @ react-dom.development.js:4169 Show 10 more frames auth.js:7551 Warning: Cannot update a component from inside the function body of a different component. in SetPassword (created by ConnectFunction) in ConnectFunction (created by ProtectedSetPassword) in ProtectedSetPassword (created by Context.Consumer) in Route (created by Root) in Switch (created by Root) in Router (created by HashRouter) in HashRouter (created by Root) in div (created by Context.Consumer) in EmotionCssPropInternal (created by StyledAppContainer) in StyledAppContainer (created by StyledApp) in ThemeProvider (created by ThemeProvider) in ThemeProvider (created by StyledApp) in StyledApp (created by Root) in IntlProvider (created by Root) in Root (created by ConnectFunction) in ConnectFunction in Provider in AppContainer printWarning @ react-dom.development.js:89 error @ react-dom.development.js:61 warnAboutRenderPhaseUpdatesInDEV @ react-dom.development.js:23261 scheduleUpdateOnFiber @ react-dom.development.js:21197 dispatchAction @ react-dom.development.js:15683 (anonymous) @ use-force-update.js:23 listener @ history.js:155 (anonymous) @ history.js:173 notifyListeners @ history.js:172 setState @ history.js:561 (anonymous) @ history.js:664 confirmTransitionTo @ history.js:145 push @ history.js:648 SetPassword @ SetPassword.tsx:75 renderWithHooks @ react-dom.development.js:14826 mountIndeterminateComponent @ react-dom.development.js:17506 beginWork @ react-dom.development.js:18630 beginWork$1 @ react-dom.development.js:23211 performUnitOfWork @ react-dom.development.js:22189 workLoopSync @ react-dom.development.js:22162 performSyncWorkOnRoot @ react-dom.development.js:21788 (anonymous) @ react-dom.development.js:11112 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 flushSyncCallbackQueueImpl @ react-dom.development.js:11107 flushSyncCallbackQueue @ react-dom.development.js:11095 scheduleUpdateOnFiber @ react-dom.development.js:21231 enqueueSetState @ react-dom.development.js:12662 push../node_modules/react/cjs/react.development.js.Component.setState @ react.development.js:471 (anonymous) @ react-router.js:74 listener @ history.js:155 (anonymous) @ history.js:173 notifyListeners @ history.js:172 setState @ history.js:561 (anonymous) @ history.js:664 confirmTransitionTo @ history.js:145 push @ history.js:648 (anonymous) @ Login.tsx:155 asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 Promise.then (async) asyncGeneratorStep @ auth.js?2020.09.12.21.32:80354 _next @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 (anonymous) @ auth.js?2020.09.12.21.32:80356 handleSubmit @ Login.tsx:140 handleSubmit @ LoginForm.tsx:74 callCallback @ react-dom.development.js:189 invokeGuardedCallbackDev @ react-dom.development.js:238 invokeGuardedCallback @ react-dom.development.js:293 invokeGuardedCallbackAndCatchFirstError @ react-dom.development.js:307 executeDispatch @ react-dom.development.js:390 executeDispatchesInOrder @ react-dom.development.js:415 executeDispatchesAndRelease @ react-dom.development.js:3279 executeDispatchesAndReleaseTopLevel @ react-dom.development.js:3288 forEachAccumulated @ react-dom.development.js:3260 runEventsInBatch @ react-dom.development.js:3305 runExtractedPluginEventsInBatch @ react-dom.development.js:3515 handleTopLevel @ react-dom.development.js:3559 batchedEventUpdates$1 @ react-dom.development.js:21903 batchedEventUpdates @ react-dom.development.js:1061 dispatchEventForLegacyPluginEventSystem @ react-dom.development.js:3569 attemptToDispatchEvent @ react-dom.development.js:4268 dispatchEvent @ react-dom.development.js:4190 unstable_runWithPriority @ scheduler.development.js:653 runWithPriority$1 @ react-dom.development.js:11062 discreteUpdates$1 @ react-dom.development.js:21919 discreteUpdates @ react-dom.development.js:1072 dispatchDiscreteEvent @ react-dom.development.js:4169 Show 10 more frames auth.js:65579 @wireapp/webapp action CONSENT_GET_START auth.js:65579 @wireapp/webapp action COOKIE_REMOVE_SUCCESS auth.js:65579 @wireapp/webapp action COOKIE_POLLING_STOP auth.js:65579 @wireapp/webapp action CONSENT_GET_SUCCESS :8081/:1 The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. Navigated to https://localhost:8081/ :8081/min/app.js?2020.09.12.21.32:65993 [HMR] connected vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'camera' is 'prompt' vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] ServiceWorker registration successful with scope: https://localhost:8081/ vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'geolocation' is 'prompt' vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'microphone' is 'prompt' vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'notifications' is 'prompt' vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'camera' is 'prompt' vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'geolocation' is 'prompt' vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'microphone' is 'prompt' vendor.js:125272 @wireapp/webapp/PermissionRepository [2020-09-12 18:35:36] Permission state for 'notifications' is 'prompt' vendor.js:37616 POST https://prod-nginz-https.wire.com/access 403 (Forbidden) dispatchXhrRequest @ xhr.js:178 xhrAdapter @ xhr.js:12 dispatchRequest @ dispatchRequest.js:52 Promise.then (async) request @ Axios.js:61 wrap @ bind.js:9 (anonymous) @ HttpClient.js:97 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ HttpClient.js:158 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 postAccess @ HttpClient.js:148 (anonymous) @ HttpClient.js:142 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 refreshAccessToken @ HttpClient.js:137 (anonymous) @ APIClient.js:162 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 init @ APIClient.js:160 init @ :8081/min/app.js?2020.09.12.21.32:72214 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107616 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] Logout triggered by 'not_signed_in': Disconnecting user from the backend. vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] Could not initialize app version 'dev': Authentication failed because the cookie is missing. {error: MissingCookieError: Authentication failed because the cookie is missing. at Function.get ERRORS…} t. @ logdown.min.js:1 _appInitFailure @ :8081/min/app.js?2020.09.12.21.32:107736 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107686 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _throw @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] Caused by: Authentication failed because the cookie is missing. MissingCookieError: Authentication failed because the cookie is missing. at Function.get ERRORS [as ERRORS] (https://localhost:8081/min/vendor.js?2020.09.12.21.32:6127:39) at Function.map (https://localhost:8081/min/vendor.js?2020.09.12.21.32:6162:52) at HttpClient. (https://localhost:8081/min/vendor.js?2020.09.12.21.32:6379:63) at Generator.throw () at rejected (https://localhost:8081/min/vendor.js?2020.09.12.21.32:6288:65) t. @ logdown.min.js:1 _appInitFailure @ :8081/min/app.js?2020.09.12.21.32:107787 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107686 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _throw @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] Logout triggered by 'app_init': Disconnecting user from the backend. vendor.js:125272 @wireapp/webapp/MediaDevicesHandler [2020-09-12 18:35:36] Updated MediaDevice list (3) [InputDeviceInfo, InputDeviceInfo, MediaDeviceInfo] :8081/min/app.js?2020.09.12.21.32:66093 [HMR] bundle has 1 warnings :8081/min/app.js?2020.09.12.21.32:66094 /min/app.js is 11.1 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit. vendor.js:37616 POST https://prod-nginz-https.wire.com/access/logout 403 (Forbidden) dispatchXhrRequest @ xhr.js:178 xhrAdapter @ xhr.js:12 dispatchRequest @ dispatchRequest.js:52 Promise.then (async) request @ Axios.js:61 wrap @ bind.js:9 (anonymous) @ HttpClient.js:97 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ AuthAPI.js:125 (anonymous) @ AuthAPI.js:26 push../node_modules/@wireapp/api-client/dist/auth/AuthAPI.js.__awaiter @ AuthAPI.js:22 postLogout @ AuthAPI.js:119 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72222 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:72163 _next @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 logout @ :8081/min/app.js?2020.09.12.21.32:72227 _logoutOnBackend @ :8081/min/app.js?2020.09.12.21.32:108060 logout @ :8081/min/app.js?2020.09.12.21.32:108074 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107434 emit @ events.js:146 (anonymous) @ APIClient.js:84 fulfilled @ APIClient.js:23 Promise.then (async) step @ APIClient.js:25 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 onInvalidCredentials @ APIClient.js:78 emit @ events.js:146 (anonymous) @ HttpClient.js:128 rejected @ HttpClient.js:24 Promise.then (async) step @ HttpClient.js:25 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ HttpClient.js:158 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 postAccess @ HttpClient.js:148 (anonymous) @ HttpClient.js:142 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 refreshAccessToken @ HttpClient.js:137 (anonymous) @ APIClient.js:162 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 init @ APIClient.js:160 init @ :8081/min/app.js?2020.09.12.21.32:72214 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107616 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:37616 POST https://prod-nginz-https.wire.com/access/logout 403 (Forbidden) dispatchXhrRequest @ xhr.js:178 xhrAdapter @ xhr.js:12 dispatchRequest @ dispatchRequest.js:52 Promise.then (async) request @ Axios.js:61 wrap @ bind.js:9 (anonymous) @ HttpClient.js:97 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ AuthAPI.js:125 (anonymous) @ AuthAPI.js:26 push../node_modules/@wireapp/api-client/dist/auth/AuthAPI.js.__awaiter @ AuthAPI.js:22 postLogout @ AuthAPI.js:119 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72222 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:72163 _next @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 logout @ :8081/min/app.js?2020.09.12.21.32:72227 _logoutOnBackend @ :8081/min/app.js?2020.09.12.21.32:108060 logout @ :8081/min/app.js?2020.09.12.21.32:108074 _appInitFailure @ :8081/min/app.js?2020.09.12.21.32:107794 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107686 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _throw @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/AuthRepository [2020-09-12 18:35:36] Log out on backend failed: Missing cookie and token {code: 403, message: "Missing cookie and token", label: "invalid-credentials"} t. @ logdown.min.js:1 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72225 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:72163 _throw @ :8081/min/app.js?2020.09.12.21.32:72165 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:72163 _next @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 logout @ :8081/min/app.js?2020.09.12.21.32:72227 _logoutOnBackend @ :8081/min/app.js?2020.09.12.21.32:108060 logout @ :8081/min/app.js?2020.09.12.21.32:108074 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107434 emit @ events.js:146 (anonymous) @ APIClient.js:84 fulfilled @ APIClient.js:23 Promise.then (async) step @ APIClient.js:25 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 onInvalidCredentials @ APIClient.js:78 emit @ events.js:146 (anonymous) @ HttpClient.js:128 rejected @ HttpClient.js:24 Promise.then (async) step @ HttpClient.js:25 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ HttpClient.js:158 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 postAccess @ HttpClient.js:148 (anonymous) @ HttpClient.js:142 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 refreshAccessToken @ HttpClient.js:137 (anonymous) @ APIClient.js:162 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 init @ APIClient.js:160 init @ :8081/min/app.js?2020.09.12.21.32:72214 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107616 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] Redirecting to login after connectivity verification. Reason: not_signed_in vendor.js:125272 @wireapp/webapp/BackendClient [2020-09-12 18:35:36] Connectivity check requested by 'BackendClient.CONNECTIVITY_CHECK_TRIGGER.LOGIN_REDIRECT' vendor.js:125272 @wireapp/webapp/AuthRepository [2020-09-12 18:35:36] Log out on backend failed: Missing cookie and token {code: 403, message: "Missing cookie and token", label: "invalid-credentials"} t. @ logdown.min.js:1 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72225 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:72163 _throw @ :8081/min/app.js?2020.09.12.21.32:72165 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:72163 _next @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:72165 logout @ :8081/min/app.js?2020.09.12.21.32:72227 _logoutOnBackend @ :8081/min/app.js?2020.09.12.21.32:108060 logout @ :8081/min/app.js?2020.09.12.21.32:108074 _appInitFailure @ :8081/min/app.js?2020.09.12.21.32:107794 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107686 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _throw @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/App [2020-09-12 18:35:36] Redirecting to login after connectivity verification. Reason: app_init vendor.js:125272 @wireapp/webapp/BackendClient [2020-09-12 18:35:36] Connectivity check requested by 'BackendClient.CONNECTIVITY_CHECK_TRIGGER.LOGIN_REDIRECT' vendor.js:37616 GET https://prod-nginz-https.wire.com/self 401 (Unauthorized) dispatchXhrRequest @ xhr.js:178 xhrAdapter @ xhr.js:12 dispatchRequest @ dispatchRequest.js:52 Promise.then (async) request @ Axios.js:61 wrap @ bind.js:9 (anonymous) @ HttpClient.js:97 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 (anonymous) @ HttpClient.js:166 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 sendRequest @ HttpClient.js:163 sendJSON @ HttpClient.js:171 (anonymous) @ SelfAPI.js:128 (anonymous) @ SelfAPI.js:26 push../node_modules/@wireapp/api-client/dist/self/SelfAPI.js.__awaiter @ SelfAPI.js:22 getSelf @ SelfAPI.js:123 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113502 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:113392 _next @ :8081/min/app.js?2020.09.12.21.32:113394 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113394 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113394 status @ :8081/min/app.js?2020.09.12.21.32:113503 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113539 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:113392 _next @ :8081/min/app.js?2020.09.12.21.32:113394 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113394 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113394 _checkStatus @ :8081/min/app.js?2020.09.12.21.32:113566 setTimeout (async) (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113575 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:113392 _next @ :8081/min/app.js?2020.09.12.21.32:113394 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113394 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:113394 executeOnConnectivity @ :8081/min/app.js?2020.09.12.21.32:113579 _redirectToLogin @ :8081/min/app.js?2020.09.12.21.32:108113 _redirectToLogin @ :8081/min/app.js?2020.09.12.21.32:107995 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108050 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 _logout @ :8081/min/app.js?2020.09.12.21.32:108054 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108060 Promise.then (async) _logoutOnBackend @ :8081/min/app.js?2020.09.12.21.32:108060 logout @ :8081/min/app.js?2020.09.12.21.32:108074 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107434 emit @ events.js:146 (anonymous) @ APIClient.js:84 fulfilled @ APIClient.js:23 Promise.then (async) step @ APIClient.js:25 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 onInvalidCredentials @ APIClient.js:78 emit @ events.js:146 (anonymous) @ HttpClient.js:128 rejected @ HttpClient.js:24 Promise.then (async) step @ HttpClient.js:25 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 _sendRequest @ HttpClient.js:85 push../node_modules/@wireapp/api-client/dist/shims/browser/cookie.js.exports.sendRequestWithCookie @ cookie.js:23 (anonymous) @ HttpClient.js:158 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 postAccess @ HttpClient.js:148 (anonymous) @ HttpClient.js:142 (anonymous) @ HttpClient.js:26 push../node_modules/@wireapp/api-client/dist/http/HttpClient.js.__awaiter @ HttpClient.js:22 refreshAccessToken @ HttpClient.js:137 (anonymous) @ APIClient.js:162 (anonymous) @ APIClient.js:26 push../node_modules/@wireapp/api-client/dist/APIClient.js.__awaiter @ APIClient.js:22 init @ APIClient.js:160 init @ :8081/min/app.js?2020.09.12.21.32:72214 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107616 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 Promise.then (async) asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 initApp @ :8081/min/app.js?2020.09.12.21.32:107688 App @ :8081/min/app.js?2020.09.12.21.32:107462 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:108161 asyncGeneratorStep @ :8081/min/app.js?2020.09.12.21.32:107256 _next @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 (anonymous) @ :8081/min/app.js?2020.09.12.21.32:107258 mightThrow @ jquery.js:3762 process @ jquery.js:3830 setTimeout (async) (anonymous) @ jquery.js:3868 fire @ jquery.js:3496 fireWith @ jquery.js:3626 fire @ jquery.js:3634 fire @ jquery.js:3496 fireWith @ jquery.js:3626 ready @ jquery.js:4106 completed @ jquery.js:4116 vendor.js:125272 @wireapp/webapp/BackendClient [2020-09-12 18:35:36] Connectivity verified by server error 'undefined' Error: Request failed with status code 401 at createError (createError.js:16) at settle (settle.js:17) at XMLHttpRequest.handleLoad (xhr.js:61) localhost/:1 The Content-Security-Policy directive 'prefetch-src' is implemented behind a flag which is currently disabled. Navigated to https://localhost:8081/auth/ react-dom.development.js:25029 Download the React DevTools for a better development experience: https://fb.me/react-devtools logdown.min.js:1 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_START logdown.min.js:1 @wireapp/webapp action RUNTIME_CHECK_COOKIE_START logdown.min.js:1 @wireapp/webapp action RUNTIME_CONFIRM_SUPPORTED_BROWSER logdown.min.js:1 @wireapp/webapp action RUNTIME_CHECK_INDEXEDDB_FINISH logdown.min.js:1 @wireapp/webapp action RUNTIME_CHECK_COOKIE_FINISH logdown.min.js:1 @wireapp/webapp action GET_SSO_SETTINGS_START logdown.min.js:1 @wireapp/webapp action COOKIE_POLLING_START client.js:95 [HMR] connected logdown.min.js:1 @wireapp/webapp action GET_SSO_SETTINGS_SUCCESS client.js:195 [HMR] bundle has 1 warnings client.js:196 /min/app.js is 11.1 MB, and won't be precached. Configure maximumFileSizeToCacheInBytes to change this limit.