Browse Source

UI-1588: Fixed an issue with the next extension finder mechanism

4.3
Jean-Roch Maitre 11 years ago
parent
commit
b43425ea0c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      submodules/users/users.js

+ 1
- 1
submodules/users/users.js View File

@ -1404,7 +1404,7 @@ define(function(require){
if(typeof previousIterationNumber !== 'undefined') {
// If there's a gap for a number between the last number and the current number, we check if it's a valid possible number (ie, greater than minNumber)
// And If yes, we return it, if not we just continue
if(currentNumber - previousIterationNumber !== increment && previousIterationNumber > minNumber) {
if(currentNumber - previousIterationNumber !== increment && previousIterationNumber >= minNumber) {
return previousIterationNumber + increment;
}
}


Loading…
Cancel
Save