File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
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
- requestsIds . forEach ( async requestId => {
144
+ requestIds . forEach ( async requestId => {
145
145
const acl = message . currentParseObject . getACL ( ) ;
146
146
// Check CLP
147
147
const op = this . _getCLPOperation ( subscription . query ) ;
@@ -198,7 +198,7 @@ class ParseLiveQueryServer {
198
198
JSON . stringify ( error )
199
199
) ;
200
200
}
201
- }
201
+ } ) ;
202
202
}
203
203
}
204
204
}
@@ -237,7 +237,7 @@ class ParseLiveQueryServer {
237
237
if ( typeof client === 'undefined' ) {
238
238
continue ;
239
239
}
240
- requestsIds . forEach ( async requestId => {
240
+ requestIds . 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 ;
@@ -352,7 +352,7 @@ class ParseLiveQueryServer {
352
352
JSON . stringify ( error )
353
353
) ;
354
354
}
355
- }
355
+ } ) ;
356
356
}
357
357
}
358
358
}
You can’t perform that action at this time.
0 commit comments