mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #62 from sharelatex/as-fix-rollout-logic
Fix autocompile rollout logic
This commit is contained in:
commit
bff4469ad7
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ module.exports = ProjectController =
|
|||
counter = parseInt(user_id.toString().substring(18, 24), 16)
|
||||
|
||||
rolloutProportion = 0
|
||||
if counter % 1000 < rolloutProportion
|
||||
if counter % 1000 >= rolloutProportion
|
||||
# Don't show if user is not part of roll out
|
||||
return cb(null, false)
|
||||
userSignupDate = new Date(timestamp * 1000)
|
||||
|
|
Loading…
Reference in a new issue