Skip to content

Commit c11dab0

Browse files
2 parents fddb6d8 + 60f1012 commit c11dab0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

flutter_inappwebview_platform_interface/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.0+1
2+
3+
- Fixed `X509Certificate.toMap` method
4+
15
## 1.3.0
26

37
- Added `WebViewEnvironment.customSchemeRegistrations` parameter for Windows

flutter_inappwebview_platform_interface/lib/src/x509_certificate/x509_certificate.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ class X509Certificate {
410410
"extendedKeyUsage": extendedKeyUsage,
411411
"issuerDistinguishedName": issuerDistinguishedName,
412412
"keyUsage": keyUsage,
413-
"notAfter": notAfter,
414-
"notBefore": notBefore,
413+
"notAfter": notAfter?.millisecondsSinceEpoch,
414+
"notBefore": notBefore?.millisecondsSinceEpoch,
415415
"serialNumber": serialNumber,
416416
"sigAlgName": sigAlgName,
417417
"sigAlgOID": sigAlgOID,

flutter_inappwebview_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_inappwebview_platform_interface
22
description: A common platform interface for the flutter_inappwebview plugin.
3-
version: 1.3.0
3+
version: 1.3.0+1
44
homepage: https://inappwebview.dev/
55
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_platform_interface
66
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues

0 commit comments

Comments
 (0)