Skip to content

Commit d7a1ced

Browse files
Merge pull request #29 from Keeper-of-the-Keys/itunes-fix
Fix iTunes import.
2 parents 6c92847 + d4343dc commit d7a1ced

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/gpodder/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
# This metadata block gets parsed by setup.py - use single quotes only
5151
__tagline__ = 'Media and podcast aggregator'
5252
__author__ = 'Thomas Perl <[email protected]>'
53-
__version__ = '4.9.0'
54-
__date__ = '2019-12-10'
55-
__relname__ = 'Tal'
56-
__copyright__ = '© 2005-2019 Thomas Perl and the gPodder Team'
53+
__version__ = '4.10.0'
54+
__date__ = '2020-03-02'
55+
__relname__ = 'Matar'
56+
__copyright__ = '© 2005-2020 Thomas Perl and the gPodder Team'
5757
__license__ = 'ISC / GPLv3 or later'
5858
__url__ = 'http://gpodder.org/'
5959

src/gpodder/plugins/itunes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ITunesFeedException(BaseException):
3939

4040
@registry.feed_handler.register
4141
def itunes_feed_handler(channel, max_episodes, config):
42-
m = re.match(r'https?://itunes.apple.com/(?:[^/]*/)?podcast/.+$', channel.url, re.I)
42+
m = re.match(r'https?://podcasts.apple.com/(?:[^/]*/)?podcast/.+$', channel.url, re.I)
4343
if m is None:
4444
return None
4545

0 commit comments

Comments
 (0)