Skip to content

Commit 50b545c

Browse files
author
Frank de Lange
committed
Fix downloading single episodes
1 parent 711fe04 commit 50b545c

4 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/spodcast-0.5.0.tar.gz

-43.2 KB
Binary file not shown.

dist/spodcast-0.5.1.tar.gz

43.2 KB
Binary file not shown.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = spodcast
3-
version = 0.5.0
3+
version = 0.5.1
44
description = A caching Spotify podcast to RSS proxy.
55
long_description = file:README.md
66
long_description_content_type = text/markdown

spodcast/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def client(args) -> None:
1919
episode_id_str, show_id_str = regex_input_for_urls(spotify_url)
2020
log.debug(f"episode_id_str {episode_id_str}. show_id_str {show_id_str}")
2121
if episode_id_str is not None:
22-
episode_id = EpisodeId.from_base62(episode_id_str)
22+
episode_id = EpisodeId.from_base62(episode_id_str).hex_id()
2323
log.debug("episode_id: %s", episode_id)
2424
download_episode(episode_id)
2525
elif show_id_str is not None:

0 commit comments

Comments
 (0)