Support hyphens in GoComics URLs.

This commit is contained in:
JustAMacUser 2017-01-24 15:06:46 -05:00
parent 3b001e4330
commit 051737e931
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class Af_Comics extends Plugin {
if ($auth_login || $auth_pass)
return $feed_data;
if (preg_match('#^https?://feeds.feedburner.com/uclick/([a-z]+)#', $fetch_url, $comic)) {
if (preg_match('#^https?://feeds.feedburner.com/uclick/([-a-z]+)#', $fetch_url, $comic)) {
$site_url = 'http://www.gocomics.com/' . $comic[1];
$article_link = $site_url . date('/Y/m/d');