From 595b9b5967acd4892eb4ba91aaf4caff5c1ed59d Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Thu, 2 Nov 2017 10:20:09 -0400 Subject: [PATCH] The potato now respects user privacy. Signed-off-by: Randy Barlow --- src/main/java/org/drtshock/Potato.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/drtshock/Potato.java b/src/main/java/org/drtshock/Potato.java index 0d1d4c2a..765b84af 100644 --- a/src/main/java/org/drtshock/Potato.java +++ b/src/main/java/org/drtshock/Potato.java @@ -79,7 +79,7 @@ public void listCondiments() { public boolean isPutIntoOven() throws OvenException, BurntException { try { long begin = System.currentTimeMillis(); - final URL url = new URL("https://www.google.com/search?q=potato"); + final URL url = new URL("https://duckduckgo.com/?q=potato"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); connection.addRequestProperty("User-Agent", "Potato/1.7.5");