Fix templates in poll part 2 #375

This commit is contained in:
yflory 2019-05-21 11:05:30 +02:00
parent a67e5e0f69
commit 1802656d9c
1 changed files with 4 additions and 1 deletions

View File

@ -477,6 +477,9 @@ define([
// PPP: password for the new template?
var hash = Hash.createRandomHash(p.type);
var href = '/' + p.type + '/#' + hash;
var optsPut = {};
if (p.type === 'poll') { optsPut.initialState = '{}'; }
// PPP: add password as cryptput option
Cryptput(hash, data.toSave, function (e) {
if (e) { throw new Error(e); }
@ -488,7 +491,7 @@ define([
if (obj && obj.error) { return void cb(obj.error); }
cb();
});
});
}, optsPut);
};
common.isTemplate = function (href, cb) {