We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbf8144 commit 0c5534fCopy full SHA for 0c5534f
Sources/ForageSDK/Foundation/Network/LiveForageService.swift
@@ -156,7 +156,10 @@ class LiveForageService: ForageService {
156
// MARK: Private structs
157
158
/// `Empty` used to signify a generic, decodable type that returns nothing
159
- private struct Empty: Decodable {}
+ private struct Empty: Decodable {
160
+ // stopgap to catch malformed responses, because Decodable {} (empty) treats every response as decodable
161
+ let dummyResponse: String
162
+ }
163
164
/// `ForageRequestModel` used for compose ForageSDK requests
165
private struct ForageRequestModel: Codable {
0 commit comments