Do not encode url in the default name/title
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
5ed13124c9
commit
b4bb61e158
1 changed files with 5 additions and 2 deletions
|
@ -19,6 +19,8 @@ function fromWindows1251(percentEncoded: string) {
|
|||
);
|
||||
}
|
||||
|
||||
const kSharedViaOM = 'Shared via <a href="https://organicmaps.app">Organic Maps</a>';
|
||||
|
||||
function normalizeNameAndTitle(name: string | undefined): [string, string] {
|
||||
let title = 'Organic Maps';
|
||||
if (name) {
|
||||
|
@ -40,7 +42,7 @@ function normalizeNameAndTitle(name: string | undefined): [string, string] {
|
|||
name = name.replace("'", '’'); // To embed in popup.
|
||||
title = name + ' | ' + title;
|
||||
} else {
|
||||
name = 'Shared via <a href="https://organicmaps.app">Organic Maps</a>';
|
||||
name = kSharedViaOM;
|
||||
}
|
||||
return [name, title];
|
||||
}
|
||||
|
@ -102,7 +104,8 @@ 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.
|
||||
name = encodeHTML(name);
|
||||
if (name != kSharedViaOM)
|
||||
name = encodeHTML(name);
|
||||
title = encodeHTML(title);
|
||||
|
||||
template = replaceInTemplate(template, {
|
||||
|
|
Loading…
Add table
Reference in a new issue