mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 15:05:31 +08:00
fix OPML import, closes #1333
This commit is contained in:
parent
9f424836e2
commit
c671b0a345
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@ const htmlSanitizer = require('../html_sanitizer');
|
|||
* @param {Note} parentNote
|
||||
* @return {Promise<*[]|*>}
|
||||
*/
|
||||
function importOpml(taskContext, fileBuffer, parentNote) {
|
||||
const xml = new Promise(function(resolve, reject)
|
||||
async function importOpml(taskContext, fileBuffer, parentNote) {
|
||||
const xml = await new Promise(function(resolve, reject)
|
||||
{
|
||||
parseString(fileBuffer, function (err, result) {
|
||||
if (err) {
|
||||
|
|
Loading…
Reference in a new issue