fix(ios): make parseA2UIActionBody nonisolated

main
Peter Steinberger 2025-12-19 18:10:10 +01:00
parent 377169959d
commit aec1869d32
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ final class ScreenController {
return false
}
static func parseA2UIActionBody(_ body: Any) -> [String: Any]? {
nonisolated static func parseA2UIActionBody(_ body: Any) -> [String: Any]? {
if let dict = body as? [String: Any] { return dict.isEmpty ? nil : dict }
if let str = body as? String,
let data = str.data(using: .utf8),