Skip to content

Commit

Permalink
Merge pull request #148 from EthanGrahn:fix/push-new-episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
MrChuckomo authored Mar 24, 2024
2 parents 2aa8646 + 0530b8e commit 74de7f9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/js/feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ function readFeeds() {
let feedUrl = '';
let feedPromises = [];
for (let i = 0; i < JsonContent.length; i++) {
// Do not query episodes if user does not want them in their inbox
if (!JsonContent[i].addToInbox) {
continue;
}
feedUrl = JsonContent[i].feedUrl;

feedPromises.push(
Expand Down

0 comments on commit 74de7f9

Please sign in to comment.