mirror of https://github.com/vector-im/riot-web
Fix let binding in reskindex.js
parent
4cfd6e53aa
commit
016140670b
|
@ -69,7 +69,7 @@ function filesHaveChanged(files, prevFiles) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// Check for name changes
|
// Check for name changes
|
||||||
for (const i = 0; i < files.length; i++) {
|
for (let i = 0; i < files.length; i++) {
|
||||||
if (prevFiles[i] !== files[i]) {
|
if (prevFiles[i] !== files[i]) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue