Skip to content

Commit

Permalink
Merge release/1.117.0 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
daxmobile authored Dec 3, 2024
2 parents 1524c05 + ab743e6 commit c236074
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Configuration/BuildNumber.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 321
CURRENT_PROJECT_VERSION = 323
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,12 @@ public struct DataBroker: Codable, Sendable {

version = try container.decode(String.self, forKey: .version)
steps = try container.decode([Step].self, forKey: .steps)
schedulingConfig = try container.decode(DataBrokerScheduleConfig.self, forKey: .schedulingConfig)
// Hotfix for https://app.asana.com/0/1203581873609357/1208895331283089/f
do {
schedulingConfig = try container.decode(DataBrokerScheduleConfig.self, forKey: .schedulingConfig)
} catch {
schedulingConfig = .init(retryError: 48, confirmOptOutScan: 72, maintenanceScan: 120, maxAttempts: -1)
}
parent = try? container.decode(String.self, forKey: .parent)

do {
Expand Down

0 comments on commit c236074

Please sign in to comment.