Skip to content

Commit

Permalink
Merge tag '1.5.1' into develop
Browse files Browse the repository at this point in the history
Fix some urls
  • Loading branch information
PofMagicfingers committed Nov 11, 2020
2 parents 1a20f71 + 8464cc9 commit 4f910a6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 55 deletions.
68 changes: 17 additions & 51 deletions 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.5.0",
"version": "1.5.1",
"description": "GraphQL API for podcloud",
"scripts": {
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
Expand Down
6 changes: 3 additions & 3 deletions src/schema/types/resolvers/podcast.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const Podcast = {
}
},
wiki_url(feed) {
const url = feed.wiki
let url = feed.wiki

if (empty(url)) return null

Expand All @@ -160,7 +160,7 @@ const Podcast = {
return url
},
shop_url(feed) {
const url = feed.shop
let url = feed.shop

if (empty(url)) return null

Expand All @@ -169,7 +169,7 @@ const Podcast = {
return url
},
donate_url(feed) {
const url = feed.donate
let url = feed.donate

if (empty(url)) return null

Expand Down

0 comments on commit 4f910a6

Please sign in to comment.