We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0631e9d commit c48033cCopy full SHA for c48033c
Sources/DataConnect.swift
@@ -24,7 +24,7 @@ public class DataConnect {
24
private var app: FirebaseApp
25
private var settings: DataConnectSettings
26
27
- var grpcClient: GrpcClient
+ private(set) var grpcClient: GrpcClient
28
private var operationsManager: OperationsManager
29
30
private static var instanceStore = InstanceStore()
@@ -57,7 +57,7 @@ public class DataConnect {
57
// self.grpcClient.close
58
// self.operations.close
59
60
- guard let projectID = app.options.projectID else {
+ guard app.options.projectID != nil else {
61
fatalError("Firebase DataConnect requires the projectID to be set in the app options")
62
}
63
0 commit comments