remove bare for .. of iterations - fixes #220
This commit is contained in:
@@ -132,7 +132,7 @@ export class PermanentUserData {
|
||||
* @return {string | null}
|
||||
*/
|
||||
getUserByDeletedId (id) {
|
||||
for (const [userDescription, ds] of this.dss) {
|
||||
for (const [userDescription, ds] of this.dss.entries()) {
|
||||
if (isDeleted(ds, id)) {
|
||||
return userDescription
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user