diff --git a/app/MetaGer.php b/app/MetaGer.php
index 635e3e0fcd34741796dd73b7b2e929d433a9a011..e76c352cbdf78bfabeed759efdbcc26b47c9ec1d 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -330,7 +330,7 @@ class MetaGer
     public function doBotProtection($bot)
     {
         $hash = md5(date('YmdHi'));
-        if (preg_match("/^\d+$/s", $this->getEingabe()) && $bot !== $hash) {
+        if ((preg_match("/^\d+$/s", $this->getEingabe()) || strpos($this->request->input('focus'), "%3bamp" !== FALSE) ) && $bot !== $hash) {
             return true;
         } else {
             return false;