mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-25 04:24:49 -04:00
Update size properties to UInt64 for CSV exports
This commit is contained in:
parent
a6d730acc0
commit
2260c9b0b2
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ extension Dictionary where Key == String {
|
||||||
let name: String = self["name"] as? String,
|
let name: String = self["name"] as? String,
|
||||||
let version: String = self["version"] as? String,
|
let version: String = self["version"] as? String,
|
||||||
let build: String = self["build"] as? String,
|
let build: String = self["build"] as? String,
|
||||||
let size: Int64 = self["size"] as? Int64,
|
let size: UInt64 = self["size"] as? UInt64,
|
||||||
let date: String = self["date"] as? String,
|
let date: String = self["date"] as? String,
|
||||||
let compatible: Bool = self["compatible"] as? Bool else {
|
let compatible: Bool = self["compatible"] as? Bool else {
|
||||||
return ""
|
return ""
|
||||||
|
@ -32,7 +32,7 @@ extension Dictionary where Key == String {
|
||||||
let name: String = self["name"] as? String,
|
let name: String = self["name"] as? String,
|
||||||
let version: String = self["version"] as? String,
|
let version: String = self["version"] as? String,
|
||||||
let build: String = self["build"] as? String,
|
let build: String = self["build"] as? String,
|
||||||
let size: Int64 = self["size"] as? Int64,
|
let size: UInt64 = self["size"] as? UInt64,
|
||||||
let date: String = self["date"] as? String,
|
let date: String = self["date"] as? String,
|
||||||
let compatible: Bool = self["compatible"] as? Bool else {
|
let compatible: Bool = self["compatible"] as? Bool else {
|
||||||
return ""
|
return ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue