Skip to content

Commit 80cf875

Browse files
authored
Merge pull request #2111 from iNavFlight/dzikuvx-extend-setting-cache-with-build-info
Extend settings cache with build info
2 parents 4ca1b19 + 5ad427c commit 80cf875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/settingsCache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var settingsCache = (function() {
1212
const SETTINGS_KEY = 'settings';
1313

1414
privateScope.getSetingKey = function(settingName) {
15-
return FC.CONFIG.target + '_' + FC.CONFIG.flightControllerVersion + '_' + settingName;
15+
return FC.CONFIG.target + '_' + FC.CONFIG.flightControllerVersion + '_' + FC.CONFIG.buildInfo + '_' + settingName;
1616
}
1717

1818
publicScope.flush = function() {

0 commit comments

Comments
 (0)