| ... | ... | @@ -493,7 +493,8 @@ fn fetchAndUnpack( |
| 493 | 493 | return report.fail(dep.url_tok, "missing Content-Type for '{s}'", .{uri.path}); |
| 494 | 494 | |
| 495 | 495 | if (ascii.eqlIgnoreCase(content_type, "application/gzip") or |
| 496 | | ascii.eqlIgnoreCase(content_type, "application/x-gzip")) |
| 496 | ascii.eqlIgnoreCase(content_type, "application/x-gzip") or |
| 497 | ascii.eqlIgnoreCase(content_type, "application/tar+gzip")) |
| 497 | 498 | { |
| 498 | 499 | // I observed the gzip stream to read 1 byte at a time, so I am using a |
| 499 | 500 | // buffered reader on the front of it. |