File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ class ParseLiveQueryServer {
141
141
if ( typeof client === 'undefined' ) {
142
142
continue ;
143
143
}
144
- for ( const requestId of requestIds ) {
144
+ requestsIds . forEach ( async requestId => {
145
145
const acl = message . currentParseObject . getACL ( ) ;
146
146
// Check CLP
147
147
const op = this . _getCLPOperation ( subscription . query ) ;
@@ -237,7 +237,7 @@ class ParseLiveQueryServer {
237
237
if ( typeof client === 'undefined' ) {
238
238
continue ;
239
239
}
240
- for ( const requestId of requestIds ) {
240
+ requestsIds . forEach ( async requestId => {
241
241
// Set orignal ParseObject ACL checking promise, if the object does not match
242
242
// subscription, we do not need to check ACL
243
243
let originalACLCheckingPromise ;
You can’t perform that action at this time.
0 commit comments