proper prefix

export-etherpad-hooks
John McLear 2020-11-03 22:13:20 +00:00
parent 55900b4c23
commit f2abbdb5d8
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ exports.getPadRaw = async function(padId) {
hooks.aCallAll('exportEtherpadAdditionalContent').then((prefixes) => {
prefixes.forEach(async function(prefix) {
let pluginContent = await db.get(prefix + ":" + padId);
data[prefix] = pluginContent;
data[prefix + ":" + padId] = pluginContent;
});
})
]);