@@ -47,11 +47,11 @@ struct InstallationSearchingView: View, Sendable
4747
4848 for formula in await foundFormulae
4949 {
50- foundFormulaeTracker. append ( BrewPackage ( name: formula, type: . formula, installedOn: nil , versions: [ ] , sizeInBytes: nil ) )
50+ foundFormulaeTracker. append ( BrewPackage ( name: formula, type: . formula, installedOn: nil , versions: [ ] , sizeInBytes: nil , downloadCount : nil ) )
5151 }
5252 for cask in await foundCasks
5353 {
54- foundCasksTracker. append ( BrewPackage ( name: cask, type: . cask, installedOn: nil , versions: [ ] , sizeInBytes: nil ) )
54+ foundCasksTracker. append ( BrewPackage ( name: cask, type: . cask, installedOn: nil , versions: [ ] , sizeInBytes: nil , downloadCount : nil ) )
5555 }
5656
5757 return ( foundFormulaeTracker, foundCasksTracker)
@@ -95,7 +95,7 @@ struct InstallationSearchingView: View, Sendable
9595 else
9696 { /// If it doesn't match, it's not in the array yet. Let's add it to the array
9797 tempArray. append (
98- . init( name: packageNameWithoutItsVersion, type: unprocessedFoundPackage. type, installedOn: nil , versions: [ packageVersionWithoutItsName] , sizeInBytes: nil )
98+ . init( name: packageNameWithoutItsVersion, type: unprocessedFoundPackage. type, installedOn: nil , versions: [ packageVersionWithoutItsName] , sizeInBytes: nil , downloadCount : nil )
9999 )
100100 }
101101 }
0 commit comments