summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rwxr-xr-xlib/RHRD/utils.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/RHRD/utils.pm b/lib/RHRD/utils.pm
index d87ed70..fbc3933 100755
--- a/lib/RHRD/utils.pm
+++ b/lib/RHRD/utils.pm
@@ -128,7 +128,7 @@ sub fetch_parse_json
my $res = URI::Fetch->fetch($uri, UserAgent => $ua)
or return (0, URI::Fetch->errstr);
if($res->status == URI::Fetch::URI_GONE()) {
- return (0, "This feed has been permanently removed");
+ return (0, "This resource has been permanently removed");
}
my $json = $res->content;
@@ -140,7 +140,7 @@ sub fetch_parse_json
return (0, "error parsing import result");
};
- return (1, \$data);
+ return (1, $data);
}