mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-09 02:20:45 +00:00
avoid clobbering global _ in loop
This commit is contained in:
parent
092f98d3ad
commit
0e627c92d8
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ module.exports = UpdatesManager =
|
|||
users[update.meta.user_id] = true
|
||||
|
||||
jobs = []
|
||||
for user_id, _ of users
|
||||
for user_id of users
|
||||
do (user_id) ->
|
||||
jobs.push (callback) ->
|
||||
WebApiManager.getUserInfo user_id, (error, userInfo) ->
|
||||
|
|
Loading…
Add table
Reference in a new issue