This commit is contained in:
Lemuel Marquez
2021-01-18 15:01:32 -06:00
parent 213cfd26c4
commit e9e9e4b717
+1 -1
View File
@@ -326,7 +326,7 @@ const carpetasRepetidas = async () => {
let repetidas = [];
for (let i = 0; i < carpetas.length; i++) {
for (let j = i + 1; ji < carpetas.length; j++) {
for (let j = i + 1; j < carpetas.length; j++) {
if (carpetas[i].name === carpetas[j].name) repetidas.push(carpetas[j]);
else {
repetidas.push(carpetas[i]);