1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-02 13:09:14 +00:00

Correct variable

This commit is contained in:
aliz27
2015-05-14 22:39:11 +02:00
parent 89722f508e
commit 1af9f54f32

View File

@@ -94,7 +94,7 @@ class Af_RedditImgur extends Plugin {
$matches = array();
if (preg_match("/^https?:\/\/(m\.)?imgur.com\/([^\.\/]+$)/", $entry->getAttribute("href"), $matches)) {
$token = $matches[1];
$token = $matches[2];
$album_content = fetch_file_contents($entry->getAttribute("href"),
false, false, false, false, 10);