mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
support OPML from MindManager, fixes #1862
This commit is contained in:
parent
583df35231
commit
a88a32acae
@ -22,7 +22,7 @@ app.on('window-all-closed', () => {
|
||||
});
|
||||
|
||||
app.on('ready', async () => {
|
||||
app.setAppUserModelId('com.github.zadam.trilium');
|
||||
// app.setAppUserModelId('com.github.zadam.trilium');
|
||||
|
||||
// if db is not initialized -> setup process
|
||||
// if db is initialized, then we need to wait until the migration process is finished
|
||||
|
@ -36,6 +36,12 @@ async function importOpml(taskContext, fileBuffer, parentNote) {
|
||||
if (opmlVersion === 1) {
|
||||
title = outline.$.title;
|
||||
content = toHtml(outline.$.text);
|
||||
|
||||
if (!title || !title.trim()) {
|
||||
// https://github.com/zadam/trilium/issues/1862
|
||||
title = outline.$.text;
|
||||
content = '';
|
||||
}
|
||||
}
|
||||
else if (opmlVersion === 2) {
|
||||
title = outline.$.text;
|
||||
|
Loading…
x
Reference in New Issue
Block a user