Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.23.2

* Removes specialization of 'map' to fix a Swift warning.

## 3.23.1

* Removes code for versions of iOS older than 13.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class HTTPCookieProxyAPIDelegate: PigeonApiDelegateHTTPCookie {
) throws -> HTTPCookie {
let registrar = pigeonApi.pigeonRegistrar as! ProxyAPIRegistrar

let keyValueTuples = try! properties.map<[(HTTPCookiePropertyKey, Any)], PigeonError> {
let keyValueTuples = try properties.map {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

didn't i review this PR before? gosh my memory is getting messed up!

key, value in

let newKey: HTTPCookiePropertyKey
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: webview_flutter_wkwebview
description: A Flutter plugin that provides a WebView widget based on Apple's WKWebView control.
repository: https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter_wkwebview
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
version: 3.23.1
version: 3.23.2

environment:
sdk: ^3.9.0
Expand Down