Skip to content
Snippets Groups Projects
Commit aed25563 authored by Chad Pilkey's avatar Chad Pilkey
Browse files

fix build warnings about duplicate variable names

parent 572e60f4
No related branches found
No related tags found
No related merge requests found
......@@ -752,9 +752,9 @@ package org.bigbluebutton.main.model.users
logData.logCode = "reconnect_attempt_failed";
LOGGER.info(JSON.stringify(logData));
var attemptFailedEvent:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT);
attemptFailedEvent.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION;
dispatcher.dispatchEvent(attemptFailedEvent);
var attemptFailedEvent1:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT);
attemptFailedEvent1.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION;
dispatcher.dispatchEvent(attemptFailedEvent1);
} else {
reconnecting = true;
LiveMeeting.inst().me.authTokenValid = false;
......@@ -787,9 +787,9 @@ package org.bigbluebutton.main.model.users
logData.logCode = "reconnect_attempt_failed";
LOGGER.info(JSON.stringify(logData));
var attemptFailedEvent:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT);
attemptFailedEvent.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION;
dispatcher.dispatchEvent(attemptFailedEvent);
var attemptFailedEvent2:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT);
attemptFailedEvent2.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION;
dispatcher.dispatchEvent(attemptFailedEvent2);
} else {
logData.reason = reason;
logData.app = "apps";
......
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