1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

All: Fixed crash when having invalid UTF-8 string in text editor

This commit is contained in:
Laurent Cozic
2018-01-31 19:01:11 +00:00
parent 9e979804f3
commit d6de56b2db
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class MdToHtml {
const r = resources[n];
k.push(r.id);
}
k.push(md5(body));
k.push(md5(escape(body))); // https://github.com/pvorb/node-md5/issues/41
k.push(md5(JSON.stringify(style)));
k.push(md5(JSON.stringify(options)));
return k.join('_');