Skip to content

Commit 345e14f

Browse files
authored
fix(cloud_functions): fix formatting in FunctionsStreamHandler (#17891)
1 parent 702de52 commit 345e14f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cloud_functions/cloud_functions/ios/cloud_functions/Sources/cloud_functions/FunctionsStreamHandler.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class FunctionsStreamHandler: NSObject, FlutterStreamHandler {
6262
var function: Callable<AnyEncodable, StreamResponse<AnyDecodable, AnyDecodable>>
6363

6464
if let functionName {
65-
function = self.functions.httpsCallable(functionName, options: options)
65+
function = functions.httpsCallable(functionName, options: options)
6666
} else if let functionUri, let url = URL(string: functionUri) {
67-
function = self.functions.httpsCallable(url, options: options)
67+
function = functions.httpsCallable(url, options: options)
6868
} else {
6969
await MainActor.run {
7070
events(FlutterError(code: "IllegalArgumentException",

0 commit comments

Comments
 (0)