forked from notBrad/bubo-rss
Added missing const. How did I not ever catch this?
This commit is contained in:
parent
29e2188b2e
commit
6dbd6bfe02
@ -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++) {
|
||||
|
Loading…
Reference in New Issue
Block a user