Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit 7bb63b1

Browse files
authored
Merge pull request #8 from MakeHui/master
Fix check tif bug
2 parents 881486d + 6f8ea9f commit 7bb63b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/MimeType.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public struct MimeType {
161161
bytesCount: 4,
162162
matches: { bytes, _ in
163163
return (bytes[0...3] == [0x49, 0x49, 0x2A, 0x00]) ||
164-
(bytes[0...3] == [0x4D, 0x4D, 0x20, 0x2A])
164+
(bytes[0...3] == [0x4D, 0x4D, 0x00, 0x2A])
165165
}
166166
),
167167
MimeType(

0 commit comments

Comments
 (0)