Skip to content

Commit

Permalink
fix redirections on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Xmader committed Jun 5, 2019
1 parent ae7a39b commit 4d75eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ecstatic.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function decodePathname(pathname) {
}

return piece;
}).join('/'));
}).join('/')).replace(/\\/g, '/');
}


Expand Down

0 comments on commit 4d75eef

Please sign in to comment.