Use the display name in the backup file name if not logged in
This commit is contained in:
parent
c5f983ecd7
commit
370ae81106
@ -124,7 +124,8 @@ define([
|
|||||||
|
|
||||||
var exportFile = function () {
|
var exportFile = function () {
|
||||||
var sjson = JSON.stringify(obj);
|
var sjson = JSON.stringify(obj);
|
||||||
var suggestion = obj.login_name + '-' + new Date().toDateString();
|
var name = obj.login_name || obj[USERNAME_KEY] || Messages.anonymous;
|
||||||
|
var suggestion = name + '-' + new Date().toDateString();
|
||||||
Cryptpad.prompt(Cryptpad.Messages.exportPrompt,
|
Cryptpad.prompt(Cryptpad.Messages.exportPrompt,
|
||||||
Cryptpad.fixFileName(suggestion) + '.json', function (filename) {
|
Cryptpad.fixFileName(suggestion) + '.json', function (filename) {
|
||||||
if (!(typeof(filename) === 'string' && filename)) { return; }
|
if (!(typeof(filename) === 'string' && filename)) { return; }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user