Skip to content

Commit a0d6a57

Browse files
committed
Fix proxy update
1 parent f50f35f commit a0d6a57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter/ios/sentry_flutter/Sources/sentry_flutter/SentryFlutter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public final class SentryFlutter {
103103
}
104104

105105
if var proxyDict = connectionProxyDictionary {
106-
if let user = proxy["user"] as? String, let pass = proxy["pass"] {
106+
if let user = proxy["user"] as? String, let pass = proxy["pass"] as? String {
107107
proxyDict[kCFProxyUsernameKey as String] = user
108108
proxyDict[kCFProxyPasswordKey as String] = pass
109109
}

0 commit comments

Comments
 (0)