mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 13:49:24 +00:00
Merge pull request #11741 from overleaf/tm-fix-foreach-invite-email-lowercase-script
Bugfix for script to fix lowercase emails in group invites GitOrigin-RevId: f8581376fa5dde2fe057f0e988e5921de7446612
This commit is contained in:
parent
1073c08c10
commit
6ca86168b1
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ function anyInviteEmailHasUppercaseChars(subscription) {
|
|||
}
|
||||
|
||||
async function processBatch(_, subscriptions) {
|
||||
subscriptions.forEach(subscription => {
|
||||
for (const subscription of subscriptions) {
|
||||
if (anyInviteEmailHasUppercaseChars(subscription)) {
|
||||
console.log('fixing emails in group invites for', subscription._id)
|
||||
if (!DRY_RUN) {
|
||||
|
@ -41,7 +41,7 @@ async function processBatch(_, subscriptions) {
|
|||
])
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
async function main() {
|
||||
|
|
Loading…
Reference in a new issue