Skip to content

Commit c56083b

Browse files
committed
Fix ACL save (parse-community#226)
1 parent ba17643 commit c56083b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/objects/parse_base.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ abstract class ParseBase {
202202

203203
///Set the [ParseACL] governing this object.
204204
void setACL<ParseACL>(ParseACL acl) {
205-
_getObjectData()[keyVarAcl] = acl;
205+
set(keyVarAcl, acl);
206206
}
207207

208208
///Access the [ParseACL] governing this object.

0 commit comments

Comments
 (0)