1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-25 01:05:12 +03:00

Extend settings cache with build info

This commit is contained in:
Pawel Spychalski (DzikuVx) 2024-06-16 20:08:17 +02:00
parent 1887fe142d
commit 5ad427c4b4

View file

@ -12,7 +12,7 @@ var settingsCache = (function() {
const SETTINGS_KEY = 'settings';
privateScope.getSetingKey = function(settingName) {
return FC.CONFIG.target + '_' + FC.CONFIG.flightControllerVersion + '_' + settingName;
return FC.CONFIG.target + '_' + FC.CONFIG.flightControllerVersion + '_' + FC.CONFIG.buildInfo + '_' + settingName;
}
publicScope.flush = function() {