Skip to content

Commit 1f104b5

Browse files
committed
Support target length 5
1 parent 4864f31 commit 1f104b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const processTargets = (res: string, matrixBytes: Set<string>) =>
4848
.filter(
4949
bytes =>
5050
bytes.length >= 2 &&
51-
bytes.length <= 4 &&
51+
bytes.length <= 5 &&
5252
bytes.every(byte => matrixBytes.has(byte))
5353
)
5454

0 commit comments

Comments
 (0)