Skip to content

Commit

Permalink
gpodder.plugins.vimeo: Fix channel URL matching
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Oct 26, 2014
1 parent c4c0732 commit dc92d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpodder/plugins/vimeo.py
Expand Up @@ -29,7 +29,7 @@
import re

VIMEOCOM_RE = re.compile(r'http://vimeo\.com/(\d+)$', re.IGNORECASE)
VIMEOCHANNEL_RE = re.compile(r'http://vimeo\.com/([a-z0-9]+)[/]?$', re.IGNORECASE)
VIMEOCHANNEL_RE = re.compile(r'http://vimeo\.com/((channels/)?[a-z0-9]+)[/]?$', re.IGNORECASE)
MOOGALOOP_RE = re.compile(r'http://vimeo\.com/moogaloop\.swf\?clip_id=(\d+)$', re.IGNORECASE)
SIGNATURE_RE = re.compile(r'"timestamp":(\d+),"signature":"([^"]+)"')
DATA_CONFIG_RE = re.compile(r'data-config-url="([^"]+)"')
Expand Down

0 comments on commit dc92d3c

Please sign in to comment.