Added missing const. How did I not ever catch this?

This commit is contained in:
George Mandis 2021-11-14 19:51:23 -08:00
parent 29e2188b2e
commit 6dbd6bfe02

View File

@ -93,7 +93,7 @@ const getTimestamp = (obj) => {
const contentFromAllFeeds = {};
const errors = [];
for (group in feeds) {
for (const group in feeds) {
contentFromAllFeeds[group] = [];
for (let index = 0; index < feeds[group].length; index++) {