Fixed undefined titles in ru

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-11-09 06:25:28 +01:00
parent 12c17dd053
commit 0a3fd08114
2 changed files with 4 additions and 5 deletions

View file

@ -30,7 +30,7 @@ npm i
## Development ## 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 ## Deployment

View file

@ -56,7 +56,7 @@ function normalizeZoom(zoom: string): number {
} }
const htmlEntityCode = { const htmlEntityCode = {
' ': '&nbsp;', ' ': '&nbsp;',
'¢': '&cent;', '¢': '&cent;',
'£': '&pound;', '£': '&pound;',
'¥': '&yen;', '¥': '&yen;',
@ -71,7 +71,7 @@ const htmlEntityCode = {
}; };
function encodeHTML(str: string) { 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. // Coordinates and zoom are validated separately.
@ -104,8 +104,7 @@ export async function onGe0Decode(template: string, url: string): Promise<Respon
const llz = decodeLatLonZoom(encodedLatLonZoom); const llz = decodeLatLonZoom(encodedLatLonZoom);
let [name, title] = normalizeNameAndTitle(params.length > 1 ? params[1] : undefined); let [name, title] = normalizeNameAndTitle(params.length > 1 ? params[1] : undefined);
// XSS prevention. // XSS prevention.
if (name != kSharedViaOM) if (name != kSharedViaOM) name = encodeHTML(name);
name = encodeHTML(name);
title = encodeHTML(title); title = encodeHTML(title);
template = replaceInTemplate(template, { template = replaceInTemplate(template, {