extra protection to not write what we don't know

This commit is contained in:
Henry Jameson 2021-03-08 21:14:03 +02:00
parent 914b4eb593
commit fada49768d
1 changed files with 10 additions and 1 deletions

View File

@ -111,7 +111,16 @@ const config = {
},
actions: {
loadSettings ({ dispatch }, data) {
Object.keys(this.state.config).forEach(
const knownKeys = new Set(Object.keys(this.state.config))
const presentKeys = new Set(Object.keys(data))
const intersection = new Set()
for (let elem of presentKeys) {
if (knownKeys.has(elem)) {
intersection.add(elem)
}
}
Object.keys(intersection).forEach(
name => dispatch('setOption', { name, value: data[name] })
)
},