fix OPML import, closes #1333

This commit is contained in:
zadam 2020-10-26 19:02:33 +01:00
parent 9f424836e2
commit c671b0a345

View file

@ -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) {