You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
extension Parse {
static func validatedCurrentConfiguration() -> ParseClientConfiguration {
guard let configuration = Parse.currentConfiguration() else {
preconditionFailure("Parse SDK is not initialized. Call Parse.initializeWithConfiguration() before loading live query client.")
}
return configuration
}
}
error:
Cannot call value of non-function type 'ParseClientConfiguration?'
fixing the error:
extension Parse {
static func validatedCurrentConfiguration() -> ParseClientConfiguration {
guard let configuration = Parse.currentConfiguration else {
preconditionFailure("Parse SDK is not initialized. Call Parse.initializeWithConfiguration() before loading live query client.")
}
return configuration
}
}
this is in objective-c project, this won't really fix the error, however, since i'd have to rebuild the framework. let me know your thoughts on why this error is happening.
The text was updated successfully, but these errors were encountered:
current code
error:
fixing the error:
this is in objective-c project, this won't really fix the error, however, since i'd have to rebuild the framework. let me know your thoughts on why this error is happening.
The text was updated successfully, but these errors were encountered: