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 c55474f commit 6696e48Copy full SHA for 6696e48
2 files changed
.changes/ios-invoke-response-null.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri": patch:bug
3
4
+
5
+Fixes a warning when using a null value on the `invoke.resolve()` iOS plugin API.
crates/tauri/mobile/ios-api/Sources/Tauri/JsonValue.swift
@@ -4,7 +4,7 @@
import Foundation
6
7
-public typealias JsonObject = [String: Any]
+public typealias JsonObject = [String: Any?]
8
9
public enum JsonValue {
10
case dictionary(JsonObject)
0 commit comments