mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
fix clipping selection can create multiple notes for the same Url
sanitize was replacing '&' char to '&'and changing actual Url
This commit is contained in:
parent
f02ad63e97
commit
85a6e8b47e
@ -47,6 +47,7 @@ function addClipping(req) {
|
|||||||
|
|
||||||
const clipperInbox = getClipperInboxNote();
|
const clipperInbox = getClipperInboxNote();
|
||||||
|
|
||||||
|
pageUrl = htmlSanitizer.sanitizeUrl(pageUrl);
|
||||||
let clippingNote = findClippingNote(clipperInbox, pageUrl);
|
let clippingNote = findClippingNote(clipperInbox, pageUrl);
|
||||||
|
|
||||||
if (!clippingNote) {
|
if (!clippingNote) {
|
||||||
@ -57,8 +58,6 @@ function addClipping(req) {
|
|||||||
type: 'text'
|
type: 'text'
|
||||||
}).note;
|
}).note;
|
||||||
|
|
||||||
pageUrl = htmlSanitizer.sanitize(pageUrl);
|
|
||||||
|
|
||||||
clippingNote.setLabel('clipType', 'clippings');
|
clippingNote.setLabel('clipType', 'clippings');
|
||||||
clippingNote.setLabel('pageUrl', pageUrl);
|
clippingNote.setLabel('pageUrl', pageUrl);
|
||||||
clippingNote.setLabel('iconClass', 'bx bx-globe');
|
clippingNote.setLabel('iconClass', 'bx bx-globe');
|
||||||
@ -96,7 +95,7 @@ function createNote(req) {
|
|||||||
note.setLabel('clipType', clipType);
|
note.setLabel('clipType', clipType);
|
||||||
|
|
||||||
if (pageUrl) {
|
if (pageUrl) {
|
||||||
pageUrl = htmlSanitizer.sanitize(pageUrl);
|
pageUrl = htmlSanitizer.sanitizeUrl(pageUrl);
|
||||||
|
|
||||||
note.setLabel('pageUrl', pageUrl);
|
note.setLabel('pageUrl', pageUrl);
|
||||||
note.setLabel('iconClass', 'bx bx-globe');
|
note.setLabel('iconClass', 'bx bx-globe');
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
const sanitizeHtml = require('sanitize-html');
|
const sanitizeHtml = require('sanitize-html');
|
||||||
|
const sanitizeUrl = require('@braintree/sanitize-url').sanitizeUrl;
|
||||||
|
|
||||||
// intended mainly as protection against XSS via import
|
// intended mainly as protection against XSS via import
|
||||||
// secondarily it (partly) protects against "CSS takeover"
|
// secondarily it (partly) protects against "CSS takeover"
|
||||||
@ -48,5 +49,6 @@ function sanitize(dirtyHtml) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
sanitize
|
sanitize,
|
||||||
|
sanitizeUrl
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user