Fix default pad not created after registration

pull/1/head
yflory 8 years ago
parent 8007f51655
commit efb7380a12

@ -1908,7 +1908,7 @@ define([
});
var createReadme = function (proxy, cb) {
if (proxy.initializing) {
if (sessionStorage.createReadme) {
var hash = Cryptpad.createRandomHash();
Get.put(hash, Messages.driveReadme, function (e) {
if (e) { logError(e); }
@ -1922,7 +1922,7 @@ define([
});
if (typeof(cb) === "function") { cb(); }
});
delete proxy.initializing;
delete sessionStorage.createReadme;
return;
}
if (typeof(cb) === "function") { cb(); }

@ -118,7 +118,7 @@ define([
proxy.login_name = uname;
proxy[Cryptpad.displayNameKey] = uname;
proxy.initializing = true;
sessionStorage.createReadme = 1;
Cryptpad.whenRealtimeSyncs(result.realtime, function () {
Cryptpad.login(result.userHash, result.userName, function () {

Loading…
Cancel
Save