Fixed undefined titles in ru
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
12c17dd053
commit
0a3fd08114
2 changed files with 4 additions and 5 deletions
|
@ -30,7 +30,7 @@ npm i
|
|||
|
||||
## Development
|
||||
|
||||
Use `npx wrangler dev` for development using Cloudflare, or `npx wrangler dev --local` for localhost development.
|
||||
Use `npx wrangler dev` for localhost development.
|
||||
|
||||
## Deployment
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ function normalizeZoom(zoom: string): number {
|
|||
}
|
||||
|
||||
const htmlEntityCode = {
|
||||
' ': ' ',
|
||||
' ': ' ',
|
||||
'¢': '¢',
|
||||
'£': '£',
|
||||
'¥': '¥',
|
||||
|
@ -71,7 +71,7 @@ const htmlEntityCode = {
|
|||
};
|
||||
|
||||
function encodeHTML(str: string) {
|
||||
return str.replace(/[\u00A0-\u9999<>\&''""]/gm, (i) => htmlEntityCode[i]);
|
||||
return str.replace(/[ ¢£¥€©®<>\&'"]/gm, (i) => htmlEntityCode[i]);
|
||||
}
|
||||
|
||||
// Coordinates and zoom are validated separately.
|
||||
|
@ -104,8 +104,7 @@ export async function onGe0Decode(template: string, url: string): Promise<Respon
|
|||
const llz = decodeLatLonZoom(encodedLatLonZoom);
|
||||
let [name, title] = normalizeNameAndTitle(params.length > 1 ? params[1] : undefined);
|
||||
// XSS prevention.
|
||||
if (name != kSharedViaOM)
|
||||
name = encodeHTML(name);
|
||||
if (name != kSharedViaOM) name = encodeHTML(name);
|
||||
title = encodeHTML(title);
|
||||
|
||||
template = replaceInTemplate(template, {
|
||||
|
|
Loading…
Add table
Reference in a new issue