-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed jshint #815
Fixed jshint #815
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -63,10 +63,10 @@ exports.assignErizoControllerToRoom = function(room, erizoControllerId, callback | |||
} | |||
} | |||
|
|||
erizoController = db.erizoControllers.findOne({_id: ObjectId(erizoControllerId)}); | |||
erizoController = db.erizoControllers.findOne({_id: new ObjectId(erizoControllerId)}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this the same thing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, checked!
@@ -162,7 +162,7 @@ config.erizo.networkinterface = ''; //default value: '' | |||
config.erizo.minport = 0; // default value: 0 | |||
config.erizo.maxport = 0; // default value: 0 | |||
|
|||
config.erizo['disabled_handlers'] = ['quality_filter']; // there are no handlers disabled by default | |||
config.erizo.disabledHandlers = []; // there are no handlers disabled by default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Description
This PR fixes jshint issues
[] It needs and includes Unit Tests
Changes in Client or Server public APIs
None
[] It includes documentation for these changes in
/doc
.