Skip to content

Commit ea69306

Browse files
committed
fixup! (thank you tests)
1 parent 25f3b43 commit ea69306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/open-next/src/http/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const convertHeader = (header: http.OutgoingHttpHeader) => {
3232
export function parseCookies(
3333
cookies: string | string[] | null | undefined,
3434
): string[] {
35-
if (cookies == null) {
35+
if (!cookies) {
3636
return [];
3737
}
3838

0 commit comments

Comments
 (0)