Skip to content

Commit

Permalink
Merge pull request gpodder#207 from Keeper-of-the-Keys/add-podcast-ex…
Browse files Browse the repository at this point in the history
…ception

Fix notification event for add podcast
  • Loading branch information
Keeper-of-the-Keys authored Sep 25, 2024
2 parents 19a26d4 + 72f57ff commit 624fe50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def show_loading():
try:
podcast = self.core.model.load_podcast(url, create=True)
except Exception as e:
pyotherside.send('core-error', 'Podcast: {}\nFeed URL: {}\nload_podcast error: {}'.format(podcast.title, podcast.url, str(e)))
pyotherside.send('core-error', 'Feed URL: {}\nload_podcast error: {}'.format(url, str(e)))
pyotherside.send('podcast-list-changed')
return false

Expand Down

0 comments on commit 624fe50

Please sign in to comment.