mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 16:01:18 +00:00
Fix a silly assignment mistake
This commit is contained in:
parent
23814d25ac
commit
032400905d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue