| ... | @@ -70,7 +70,7 @@ pub fn server_fetchArray(url: string) ![]const Package { | ... | @@ -70,7 +70,7 @@ pub fn server_fetchArray(url: string) ![]const Package { |
| 70 | errdefer list.deinit(); | 70 | errdefer list.deinit(); |
| 71 | | 71 | |
| 72 | for (val.root.array.items) |item| { | 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 | try list.append(Package{ | 74 | try list.append(Package{ |
| 75 | .name = item.object.get("name").?.string, | 75 | .name = item.object.get("name").?.string, |
| 76 | .author = item.object.get("author").?.string, | 76 | .author = item.object.get("author").?.string, |