Commit 583bbe5c authored by Emiliano Balbuena's avatar Emiliano Balbuena

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

1 merge request!528WIP: (feat): Minds Pro
Pipeline #81602958 failed with stages
in 4 minutes and 56 seconds
......@@ -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);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment