mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5 lines
174 B
JavaScript
5 lines
174 B
JavaScript
// Function to indicate HTTP 200 OK after redirect from file_bug1011748_redirect.sjs
|
|
function handleRequest(request, response) {
|
|
response.setStatusLine(null, 200, "OK");
|
|
}
|