Fix readme pad not added at registration in sframe drive

This commit is contained in:
yflory
2017-09-25 16:09:54 +02:00
parent 1afbd4648d
commit d2f1d0c0e9
2 changed files with 31 additions and 31 deletions

View File

@@ -2828,32 +2828,6 @@ define([
refresh();
};
var createReadme = function (proxy, cb) {
if (sessionStorage.createReadme) {
var hash = Cryptpad.createRandomHash();
Get.put(hash, Messages.driveReadme, function (e) {
if (e) { logError(e); }
var href = '/pad/#' + hash;
var data = {
href: href,
title: Messages.driveReadmeTitle,
atime: new Date().toISOString(),
ctime: new Date().toISOString()
};
filesOp.pushData(data, function (e, id) {
if (e) {
return void console.error("Error while creating the default pad:", e);
}
filesOp.add(id);
if (typeof(cb) === "function") { cb(); }
});
});
delete sessionStorage.createReadme;
return;
}
if (typeof(cb) === "function") { cb(); }
};
var fmConfig = {
noHandlers: true,
onUploaded: function (ev, data) {
@@ -2880,11 +2854,8 @@ define([
};
APP.FM = common.createFileManager(fmConfig);
createReadme(proxy, function () {
refresh();
//APP.userList.onChange();
Cryptpad.removeLoadingScreen();
});
refresh();
Cryptpad.removeLoadingScreen();
};
var setHistory = function (bool, update) {