]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/ServerBlock.php
derp, minor fix
[friendica.git] / src / Console / ServerBlock.php
index 9ef6777db73d3cf307514922775522c5084ec26c..65b806fc70f5fc0a653c9b67540247d97c077507 100644 (file)
@@ -155,12 +155,12 @@ HELP;
         */
        private function addBlockedServer(): int
        {
-               if (count($this->args) < 2 || count($this->args) > 3) {
-                       throw new CommandArgsException('Add needs a domain pattern and optionally a reason.');
+               if (count($this->args) != 3) {
+                       throw new CommandArgsException('Add needs a domain pattern and a reason.');
                }
 
                $pattern = $this->getArgument(1);
-               $reason  = (count($this->args) === 3) ? $this->getArgument(2) : DomainPatternBlocklist::DEFAULT_REASON;
+               $reason  = $this->getArgument(2);
 
                $result = $this->blocklist->addPattern($pattern, $reason);
                if ($result) {