Don't fetch widgets unless logged in

This commit is contained in:
Travis Ralston 2019-08-09 18:01:08 -06:00
parent 74ce5c3541
commit 58ccc7eb0c

View file

@ -67,6 +67,7 @@ export class IntegrationManagers {
} }
_setupAccountManagers() { _setupAccountManagers() {
if (!this._client.getUserId()) return; // not logged in
const widgets = WidgetUtils.getIntegrationManagerWidgets(); const widgets = WidgetUtils.getIntegrationManagerWidgets();
widgets.forEach(w => { widgets.forEach(w => {
const data = w.content['data']; const data = w.content['data'];