mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-24 20:14:41 -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 version: String = self["version"] 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 compatible: Bool = self["compatible"] as? Bool else {
|
||||
return ""
|
||||
|
@ -32,7 +32,7 @@ extension Dictionary where Key == String {
|
|||
let name: String = self["name"] as? String,
|
||||
let version: String = self["version"] 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 compatible: Bool = self["compatible"] as? Bool else {
|
||||
return ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue