aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/drtshock
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/drtshock')
-rw-r--r--src/main/java/org/drtshock/Potato.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/drtshock/Potato.java b/src/main/java/org/drtshock/Potato.java
index 5a72871..b418664 100644
--- a/src/main/java/org/drtshock/Potato.java
+++ b/src/main/java/org/drtshock/Potato.java
@@ -36,7 +36,7 @@ public class Potato implements Tuber {
public boolean isPutIntoOven() {
try {
- final URL url = new URL("https://www.google.com/");
+ final URL url = new URL("https://www.google.com/search?q=potato");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.connect();