Skip to content

Commit

Permalink
missed encoding a PBXObject
Browse files Browse the repository at this point in the history
  • Loading branch information
g-Off committed Jul 2, 2019
1 parent aa649c9 commit b788cb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class XCVersionGroup: PBXGroup {
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encodeIfPresent(currentVersion?.plistID, forKey: .currentVersion)
try container.encodeIfPresent(currentVersion, forKey: .currentVersion)
try container.encodeIfPresent(versionGroupType, forKey: .versionGroupType)
}
}

0 comments on commit b788cb5

Please sign in to comment.