Update index.js

This commit is contained in:
Jyotirmoy Bandyopadhayaya 2020-10-27 10:31:29 +05:30 committed by GitHub
parent f8aaf6142b
commit 978beb49a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,9 @@ async function handleRequest(request) {
})
else
return new Response(
'404 not found !! Check all possible at https://links.dfcommunity.win/all-urls',
{ status: 404 },
'<html><head><ttile>DF Community URL Shortner</title></head><body>404 not found !! Check all possible at https://links.dfcommunity.win/all-urls</body></html>',
{
status: 404,
},
)
}