diff --git a/app/HtmlDocument.php b/app/HtmlDocument.php
index c8ab0de5c9e9f366db931533f09ee1ffad6a4294..fe81d10d64d7fcdeaf36dfb9775813636dd668ad 100644
--- a/app/HtmlDocument.php
+++ b/app/HtmlDocument.php
@@ -100,6 +100,7 @@ class HtmlDocument extends Document
                 # Convert all relative Links to absolute Ones
                 $action = $this->convertRelativeToAbsoluteLink($action);
             }
+            #
             # And finally Proxify the Url
             $action = $this->proxifyUrl($action, true);
             $form->setAttribute("action", $action);
diff --git a/app/Http/Controllers/ProxyController.php b/app/Http/Controllers/ProxyController.php
index 941aa7221c001d073f3b243897d14358ecc17330..344343be6604cee8d45178fe0a96686137f77c40 100644
--- a/app/Http/Controllers/ProxyController.php
+++ b/app/Http/Controllers/ProxyController.php
@@ -140,7 +140,7 @@ class ProxyController extends Controller
         $result   = [];
         $httpcode = 200;
 
-        if (!Cache::has($hash)) {
+        if (!Cache::has($hash) || 1 === 1) {
             // Inits the Curl connection for being able to preload multiple URLs while using a keep-alive connection
             $this->initCurl();
             $result = $this->getUrlContent($targetUrl, false);
@@ -198,7 +198,7 @@ class ProxyController extends Controller
                 # redundant file transfers:
                 $val = base64_encode(serialize($result));
 
-                Cache::put($hash, $val, 60);
+                #Cache::put($hash, $val, 60);
             }
 
             curl_close($this->ch);