Not logging request method, keeping pw gen values if they are greater than max

This commit is contained in:
mrfry 2021-04-25 16:45:56 +02:00
parent 68447ba0c8
commit ca645404e5
2 changed files with 5 additions and 6 deletions

View file

@ -264,6 +264,10 @@ function setup(data: SubmoduleData): any {
return
}
if (user.avaiblePWRequests >= maxPWCount) {
return
}
logger.Log(
`Setting avaible PW-s for user #${user.id}: ${user.avaiblePWRequests} -> ${maxPWCount}`,
logger.GetColor('cyan')