Skip to content
Snippets Groups Projects
Commit 583bbe5c authored by Emiliano Balbuena's avatar Emiliano Balbuena
Browse files

(fix): Do not show console error when user is logged out

parent aad3c095
No related branches found
No related tags found
Loading
......@@ -303,7 +303,9 @@ export class ProChannelService implements OnDestroy {
this.session.login(response.channel);
}
} catch (e) {
console.error(e);
if (!e || e.message !== 'The user could not be found') {
console.error(e);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment