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 e1553f5 commit 612e4d1Copy full SHA for 612e4d1
Sources/ParseSwift/Coding/ParseEncoder.swift
@@ -426,9 +426,9 @@ private struct _ParseEncoderKeyedEncodingContainer<Key: CodingKey>: KeyedEncodin
426
}
427
428
mutating func encode<T>(_ value: T, forKey key: Key) throws where T: Encodable {
429
- var valueToEncode: Encodable = value
430
if self.encoder.skippedKeys.contains(key.stringValue) && !self.encoder.ignoreSkipKeys { return }
431
+ var valueToEncode: Encodable = value
432
if let parseObject = value as? Objectable {
433
if let replacedObject = try self.encoder.deepFindAndReplaceParseObjects(parseObject) {
434
valueToEncode = replacedObject
0 commit comments