0

I've inherited a Parse app that works fine on Parse.com, but after migrating to a new server, I'm seeing this error. As far as I can tell, this app doesn't enable pinning (Parse.enableLocalDatastore() is not called anywhere)

Q: Is there anything about the server setup that could be an issue here?

rici
  • 234,347
  • 28
  • 237
  • 341
  • Hi , can you please show how you initialize parse SDK on the client side? – Ran Hassid Dec 01 '16 at 19:27
  • BAM! Your request made me discover what is wrong. I received instructions to use the following code, but the is wrong. Parse initializeWithConfiguration:[ParseClientConfiguration configurationWithBlock:^(id configuration) { configuration.applicationId = kParseAppId; configuration.clientKey = kParseClientKey; configuration.server = kParseURL; configuration.localDatastoreEnabled = YES; }]]; – user1930720 Dec 01 '16 at 22:49
  • This is exactly what I wanted you to notice ;) – Ran Hassid Dec 02 '16 at 05:26

1 Answers1

0

I incorrectly initialized Parse with config item

configuration.localDatastoreEnabled = YES