fix: bridge gateway anycodable payloads

This commit is contained in:
Peter Steinberger
2026-01-20 14:20:02 +00:00
parent bef9d5bdc8
commit 48ab168df2
4 changed files with 55 additions and 4 deletions

View File

@@ -29,5 +29,10 @@ public struct GatewayDecodingError: LocalizedError, Sendable {
public let method: String
public let message: String
public init(method: String, message: String) {
self.method = method
self.message = message
}
public var errorDescription: String? { "\(self.method): \(self.message)" }
}