async ngOnInit()

in src/app/app.component.ts [38:52]


    async ngOnInit() {
        try {
            await this._session.ping()
        } catch (e) {
            // Ignore.
        }

        this._sessionSub = this._session.sessionChanges.subscribe(ses => {
            if (ses) {
                this._router.goToMain()
            } else {
                this._router.goToLogin()
            }
        })
    }