Created
September 15, 2008 10:30
-
-
Save kzys/10830 to your computer and use it in GitHub Desktop.
Because Flickr::API returns gzipped response.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: lib/Plagger/Plugin/CustomFeed/FlickrSearch.pm | |
=================================================================== | |
--- lib/Plagger/Plugin/CustomFeed/FlickrSearch.pm (revision 2044) | |
+++ lib/Plagger/Plugin/CustomFeed/FlickrSearch.pm (working copy) | |
@@ -51,7 +51,7 @@ | |
$context->error("$method failed: $search->{error_text}") | |
unless $search->{success}; | |
- my $search_doc = $parser->parse_string($search->{_content}); | |
+ my $search_doc = $parser->parse_string($search->decoded_content); | |
foreach my $search_photo ( $search_doc->findnodes('/rsp/photos/photo') ) { | |
my $entry = $self->_create_entry($context, $flickr, $parser, $search_photo); | |
@@ -81,7 +81,7 @@ | |
); | |
next unless $info->{success}; | |
- my $info_doc = $parser->parse_string($info->{_content}); | |
+ my $info_doc = $parser->parse_string($info->decoded_content); | |
my $link = $info_doc->findvalue(q[/rsp/photo/urls/url[@type='photopage']]); | |
my $author = $info_doc->findvalue(q[/rsp/photo/owner/@realname]) | |
|| $info_doc->findvalue(q[/rsp/photo/owner/@username]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment