diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/http/mime_type.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/mime_type.zig b/src/http/mime_type.zig index fb4043482..555adaa70 100644 --- a/src/http/mime_type.zig +++ b/src/http/mime_type.zig @@ -133,7 +133,7 @@ pub fn init(str_: string, allocator: ?std.mem.Allocator, allocated: ?*bool) Mime } } - if (strings.eqlComptimeIgnoreLen(str, "octet-stream")) { + if (strings.eqlComptime(str, "octet-stream")) { return other; } |