From d4dea611c20f66065f7521447513c93ae91b81d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20P=C3=A9rez?= Date: Wed, 6 Jul 2016 17:11:19 -0400 Subject: [PATCH] Fix #86 --- js/backup_restore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/backup_restore.js b/js/backup_restore.js index 29367dca..55fcdbe2 100644 --- a/js/backup_restore.js +++ b/js/backup_restore.js @@ -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;