Skip to content

Commit

Permalink
Bugfix for trying to save cache twice on web scrape
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Mar 23, 2024
1 parent 82bd0c0 commit f4b274d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/jasper/component/WebScraper.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ public Ref web(String url, String origin, Scrape config) throws IOException, URI
cache = fetch(result.getUrl(), result.getOrigin());
if (cache == null) return result;
result.setPlugin("_plugin/cache", cache);
ingest.update(result, false);
}
data = new String(storage.get(origin, CACHE, cache.getId()));
} else {
Expand Down

0 comments on commit f4b274d

Please sign in to comment.