first set of bugfixes, store configurator version in the backup file

10.3.x-maintenance
cTn 2014-10-12 16:16:47 +02:00
parent 4f0ddfb5b2
commit a67bbac54b
1 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,7 @@ function configuration_backup(callback) {
];
var configuration = {
'generatedBy': chrome.runtime.getManifest().version,
'profiles': []
};
@ -59,11 +60,12 @@ function configuration_backup(callback) {
codeKey = 0;
fetchingProfile++;
query();
MSP.send_message(MSP_codes.MSP_SELECT_SETTING, [fetchingProfile], false, query);
}
});
} else {
MSP.send_message(MSP_codes.MSP_SELECT_SETTING, [0], false, fetch_unique_data);
MSP.send_message(MSP_codes.MSP_SELECT_SETTING, [activeProfile], false, fetch_unique_data);
}
}