Skip to content

Commit

Permalink
fix: local deb install crash
Browse files Browse the repository at this point in the history
  • Loading branch information
elihwyma committed Aug 8, 2023
1 parent 98a75e8 commit f2b61b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Zebra/JSONParsing/ZBCanisterDownloadIngests.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ -(instancetype)initWithPackage:(ZBPackage *_Nonnull)package {

-(NSDictionary *)dictionary {
return @{
@"package_id": self.package_id,
@"package_version": self.package_version,
@"package_author": self.package_author,
@"package_maintainer": self.package_maintainer,
@"repository_uri": self.repostiory_uri
@"package_id": self.package_id ?: [NSNull null],
@"package_version": self.package_version ?: [NSNull null],
@"package_author": self.package_author ?: [NSNull null],
@"package_maintainer": self.package_maintainer ?: [NSNull null],
@"repository_uri": self.repostiory_uri ?: [NSNull null]
};
}

Expand Down

0 comments on commit f2b61b1

Please sign in to comment.