Closed
Description
Getting a NullReferenceException when I am trying to set the ParseACL to an instantiated ParseObject.
The following line causes the issue for me in the Parse .NET SDK 1.6.2:
var po = new ParseObject("Table");
po.ACL = new ParseACL(ParseUser.CurrentUser);
This code is run after user is authenticated. ParseUser.CurrentUser is not null.