Fix burn after reading with onlyoffice

This commit is contained in:
yflory
2020-01-21 11:01:07 +01:00
parent dbb726e4ce
commit 4a4146f39d
5 changed files with 59 additions and 31 deletions

View File

@@ -354,7 +354,7 @@ define([
key: key,
href: href
}, function (err, res) {
cb (err || res.error, res.data);
cb(err || res.error, res && res.data);
});
};
funcs.setPadAttribute = function (key, value, cb, href) {