Skip to content

Commit 660dae1

Browse files
committed
fix: fixed value parsing
1 parent b1f5f1c commit 660dae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ html
5757
}
5858
each headerLine, i in headerLines
5959
- const index = headerLine.line.indexOf(': ')
60-
- const value = headerLine.line.slice(index + 1)
60+
- const value = headerLine.line.slice(index + 2)
6161
- const header = headers.get(headerLine.key)
6262
tr
6363
td

0 commit comments

Comments
 (0)