Skip to content

Commit

Permalink
Merge branch 'release/1.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
PofMagicfingers committed Feb 5, 2021
2 parents 93b707f + 58f930b commit 7a65c4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "podcloud-feeds",
"version": "1.7.2",
"version": "1.7.3",
"description": "GraphQL API for podcloud",
"scripts": {
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
Expand Down
2 changes: 1 addition & 1 deletion src/schema/types/resolvers/playlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Playlist = {
return Promise.resolve();
}

if (item.published_at <= new Date()) {
if (item.published_at > new Date()) {
debug("Ignoring unpublished episode");
return Promise.resolve();
}
Expand Down

0 comments on commit 7a65c4c

Please sign in to comment.