turned forEachAsync into forEach

This commit is contained in:
Gabriel Grubba
2023-03-28 10:00:44 -03:00
parent b963764c9f
commit e88b84093e

View File

@@ -333,7 +333,7 @@ export default class Cursor {
}
// it means it's an id map
if (query.results?.size?.()) {
query.results.forEachAsync(handler);
query.results.forEach(handler);
}
}