Fix a silly assignment mistake

This commit is contained in:
Shane Kilkelly 2017-11-10 15:59:11 +00:00
parent 23814d25ac
commit 032400905d

View file

@ -28,7 +28,7 @@ CollaboratorsHandler = require '../Collaborators/CollaboratorsHandler'
module.exports = ProjectController =
_isInPercentageRollout: (objectId, percentage) ->
if Settings.bypassPercentageRollouts = true
if Settings.bypassPercentageRollouts == true
return true
counter = parseInt(objectId.toString().substring(18, 24), 16)
return (counter % 100) < percentage