You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-07 21:23:00 +03:00
Fix let binding in reskindex.js
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user