This commit is contained in:
zadam 2020-08-15 00:06:26 +02:00
parent 121c819b79
commit 625483a8f2
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import ScriptContext from "./script_context.js";
import server from "./server.js";
import toastService from "./toast.js";
import treeCache from "./tree_cache.js";
async function getAndExecuteBundle(noteId, originEntity = null) {
const bundle = await server.get('script/bundle/' + noteId);
@ -17,7 +18,9 @@ async function executeBundle(bundle, originEntity, $container) {
}.call(apiContext));
}
catch (e) {
toastService.showAndLogError(`Execution of ${bundle.noteId} failed with error: ${e.message}`);
const note = await treeCache.getNote(bundle.noteId);
toastService.showAndLogError(`Execution of JS note "${note.title}" with ID ${bundle.noteId} failed with error: ${e.message}`);
}
}

View File

@ -26,7 +26,7 @@ class NoteContentUnprotectedFulltextExp extends Expression {
FROM notes JOIN note_contents USING (noteId)
WHERE type IN ('text', 'code') AND isDeleted = 0 AND isProtected = 0`)) {
content = content.toLowerCase();
content = content.toString().toLowerCase();
if (type === 'text' && mime === 'text/html') {
content = striptags(content);