Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #119 from adam-miller/HER-2082
Browse files Browse the repository at this point in the history
Fix for HER-2082
  • Loading branch information
nlevitt committed Mar 26, 2015
2 parents bcae99d + 458cbb5 commit 0923a7c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -730,7 +730,7 @@ protected URI writeMetadata(final WARCWriter w,
Collection<CrawlURI> links = curi.getOutLinks();
if (links != null && links.size() > 0) {
for (CrawlURI link: links) {
r.addLabelValue("outlink", link.getURI());
r.addLabelValue("outlink", link.getURI()+" "+link.getLastHop()+" "+link.getViaContext());
}
}

Expand Down

0 comments on commit 0923a7c

Please sign in to comment.