Google link cleaner now works on all .dot versions

master
pictuga 2014-03-22 20:52:25 +01:00
parent c94ef92131
commit a4cf5e0daa
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ def Fix(item, feedurl='/'):
item.link = urlparse.urljoin(feedurl, item.link)
# google
if fnmatch(item.link, 'http://www.google.com/url?q=*'):
if fnmatch(item.link, 'http://www.google.*/url?q=*'):
item.link = urlparse.parse_qs(urlparse.urlparse(item.link).query)['q'][0]
log(item.link)