Merge pull request #87 from bilson/issue-86

Fix #86
10.3.x-maintenance
Michael Keller 2016-07-07 09:30:03 +12:00 committed by GitHub
commit 78c50c3329
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ function configuration_backup(callback) {
now = (d.getMonth() + 1) + '.' + d.getDate() + '.' + d.getFullYear() + '.' + d.getHours() + '.' + d.getMinutes();
// create or load the file
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'cleanflight_backup_' + now, accepts: accepts}, function (fileEntry) {
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'betaflight_backup_' + now, accepts: accepts}, function (fileEntry) {
if (chrome.runtime.lastError) {
console.error(chrome.runtime.lastError.message);
return;