fix(ios): make parseA2UIActionBody nonisolated
parent
377169959d
commit
aec1869d32
|
|
@ -264,7 +264,7 @@ final class ScreenController {
|
||||||
return false
|
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 dict = body as? [String: Any] { return dict.isEmpty ? nil : dict }
|
||||||
if let str = body as? String,
|
if let str = body as? String,
|
||||||
let data = str.data(using: .utf8),
|
let data = str.data(using: .utf8),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue