Skip to content

Commit 5a5465e

Browse files
authored
Fix casing for afterLiveQueryEvent (#797)
1 parent c257296 commit 5a5465e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_includes/cloudcode/cloud-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ Parse.Cloud.afterLiveQueryEvent('MyObject', async (request) => {
815815

816816
// Extend matchesQuery functionality to LiveQuery
817817
Parse.Cloud.afterLiveQueryEvent('MyObject', async (request) => {
818-
if (request.event != "Create") {
818+
if (request.event != "create") {
819819
return;
820820
}
821821
const query = request.object.relation('children').query();

0 commit comments

Comments
 (0)