Skip to content

Commit

Permalink
Merge pull request #695 from podverse/develop
Browse files Browse the repository at this point in the history
Release v4.15.1
  • Loading branch information
mitchdowney committed Nov 16, 2023
2 parents 8f8c056 + afdecb3 commit 15389a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "podverse-api",
"version": "4.15.0",
"version": "4.15.1",
"description": "Data API, database migration scripts, and backend services for all Podverse models.",
"contributors": [
"Mitch Downey"
Expand Down
2 changes: 1 addition & 1 deletion src/services/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ const assignParsedEpisodeData = async (
episode.imageUrl = parsedEpisode.imageURL
episode.isExplicit = parsedEpisode.explicit

episode.itunesEpisode = parsedEpisode.itunesEpisode
episode.itunesEpisode = parsedEpisode && Math.floor(parsedEpisode.itunesEpisode)
episode.itunesEpisodeType = parsedEpisode.itunesEpisodeType
episode.itunesSeason = parsedEpisode.itunesSeason

Expand Down

0 comments on commit 15389a6

Please sign in to comment.