| author | |
| committer | |
| log | b46cdbf797afba04946f05292809832e73834a6c |
| tree | b5bab7ad27f3d323bfb58de1fee794817bab74f4 |
| parent | ba84a39193b88ab27cf6bf948244bfedcebfde4f |
1 files changed, 1 insertions(+), 1 deletions(-)
src/cmd/zpm.zig+1-1| ... | ... | @@ -70,7 +70,7 @@ pub fn server_fetchArray(url: string) ![]const Package { |
| 70 | 70 | errdefer list.deinit(); |
| 71 | 71 | |
| 72 | 72 | for (val.root.array.items) |item| { |
| 73 | if (item.object.get("root_file") == null) continue; | |
| 73 | if (item.object.get("root_file").? == .null) continue; | |
| 74 | 74 | try list.append(Package{ |
| 75 | 75 | .name = item.object.get("name").?.string, |
| 76 | 76 | .author = item.object.get("author").?.string, |