Fix cryptget inner

This commit is contained in:
yflory
2019-12-17 10:57:13 +01:00
parent e38d6d1093
commit 5a055233c0
5 changed files with 17 additions and 9 deletions

View File

@@ -43,7 +43,7 @@ var factory = function (Hash, Crypt, Nacl, Scrypt/*, Util, Cred, nThen */) {
'base64'); // format, could be 'base64'
};
Invite.getPreviewContent = function (seeds, cb) {
Invite.getPreviewContent = function (seeds, cryptgetOpts, cb) {
setTimeout(function () {
cb(void 0, {
author: {
@@ -67,7 +67,7 @@ var factory = function (Hash, Crypt, Nacl, Scrypt/*, Util, Cred, nThen */) {
console.error(e);
cb(e);
}
});
}, cryptgetOpts);
// cb("NOT_IMPLEMENTED"); // XXX cryptget
};