Skip to content
Snippets Groups Projects
Commit 6ba09a31 authored by Oleksandr Zhurbenko's avatar Oleksandr Zhurbenko
Browse files

Fixed a logClient function call

parent 8853d562
No related branches found
No related tags found
No related merge requests found
import Auth from '/imports/ui/services/auth';
import { logClient } from '/imports/ui/services/api';
import { log } from '/imports/ui/services/api';
// disconnected and trying to open a new connection
const STATUS_CONNECTING = 'connecting';
......@@ -88,11 +88,7 @@ export function authenticatedRouteHandler(nextState, replace, callback) {
Auth.authenticate()
.then(callback)
.catch((reason) => {
logClient('error', {
error: reason,
method: 'authenticatedRouteHandler',
credentialsSnapshot,
});
log('error', reason);
// make sure users who did not connect are not added to the meeting
// do **not** use the custom call - it relies on expired data
......
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