diff --git a/Parse/Platform/Objects/ParseObjectClassController.cs b/Parse/Platform/Objects/ParseObjectClassController.cs index 13cf1b15..2f1f4ed5 100644 --- a/Parse/Platform/Objects/ParseObjectClassController.cs +++ b/Parse/Platform/Objects/ParseObjectClassController.cs @@ -112,6 +112,7 @@ public ParseObject Instantiate(string className, IServiceHub serviceHub) Classes.TryGetValue(className, out ParseObjectClass info); Mutex.ExitReadLock(); + serviceHub = serviceHub ?? ParseClient.Instance; return info is { } ? info.Instantiate().Bind(serviceHub) : new ParseObject(className, serviceHub); }