Added missing const. How did I not ever catch this?
This commit is contained in:
parent
c4aa99d086
commit
5c84d7402e
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ const getTimestamp = (obj) => {
|
||||||
const contentFromAllFeeds = {};
|
const contentFromAllFeeds = {};
|
||||||
const errors = [];
|
const errors = [];
|
||||||
|
|
||||||
for (group in feeds) {
|
for (const group in feeds) {
|
||||||
contentFromAllFeeds[group] = [];
|
contentFromAllFeeds[group] = [];
|
||||||
|
|
||||||
for (let index = 0; index < feeds[group].length; index++) {
|
for (let index = 0; index < feeds[group].length; index++) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue