Merge remote-tracking branch 'origin/stable'

# Conflicts:
#	src/public/app/services/note_content_renderer.js
This commit is contained in:
zadam
2020-11-08 21:06:48 +01:00
22 changed files with 6102 additions and 5954 deletions

View File

@@ -12,6 +12,10 @@ async function handleRequest(req, res) {
const attrs = repository.getEntities("SELECT * FROM attributes WHERE isDeleted = 0 AND type = 'label' AND name IN ('customRequestHandler', 'customResourceProvider')");
for (const attr of attrs) {
if (!attr.value.trim()) {
continue;
}
const regex = new RegExp(attr.value);
let match;