mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
4 lines
154 B
Text
4 lines
154 B
Text
|
|
function handleRequest(request, response) {
|
||
|
|
response.setStatusLine(null, 302, "Found");
|
||
|
|
response.setHeader("Location", request.queryString, false);
|
||
|
|
}
|