Merge pull request #643 from rgoldberg/493-json-parse-error

Fix JSON parsing error by making `formattedPrice` & `price` optional for `SearchResult`
This commit is contained in:
Ross Goldberg 2024-11-20 00:46:26 -05:00 committed by GitHub
commit 63dc7f1fc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 4 deletions

View file

@ -18,7 +18,7 @@ enum AppInfoFormatter {
let headline = [
"\(app.trackName)",
"\(app.version)",
"[\(app.formattedPrice)]",
"[\(app.displayPrice)]",
]
.joined(separator: " ")

View file

@ -29,7 +29,7 @@ enum SearchResultFormatter {
let version = result.version
if includePrice {
output += String(format: "%12lu %@ (%@) %@\n", appID, appName, version, result.formattedPrice)
output += String(format: "%12lu %@ (%@) %@\n", appID, appName, version, result.displayPrice)
} else {
output += String(format: "%12lu %@ (%@)\n", appID, appName, version)
}

View file

@ -10,9 +10,9 @@ struct SearchResult: Decodable {
var bundleId: String
var currentVersionReleaseDate: String
var fileSizeBytes: String
var formattedPrice: String
var formattedPrice: String?
var minimumOsVersion: String
var price: Double
var price: Double?
var sellerName: String
var sellerUrl: String?
var trackId: AppID
@ -20,6 +20,10 @@ struct SearchResult: Decodable {
var trackViewUrl: String
var version: String
var displayPrice: String {
formattedPrice ?? "Unknown"
}
init(
bundleId: String = "",
currentVersionReleaseDate: String = "",