mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-01 05:18:38 +09:00
10 lines
309 B
JavaScript
10 lines
309 B
JavaScript
|
|
function handleRequest(request, response)
|
|
{
|
|
// avoid confusing cache behaviors
|
|
response.setHeader("Cache-Control", "no-cache", false);
|
|
response.setHeader("Content-Type", "application/json", false);
|
|
|
|
// used by test_user_agent_updates test
|
|
response.write(decodeURIComponent(request.queryString));
|
|
}
|