Update embarassing logic

This commit is contained in:
Miguel Nogueira 2020-12-27 19:49:55 +00:00
parent f6c86b3b74
commit 1b6214a2ec
Signed by: miguel456
GPG Key ID: 2CF61B825316C6A0
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class CatAPI {
Analog::debug('CatAPI: Fetching cat picture with count ' . $count . ' and size ' . $size); Analog::debug('CatAPI: Fetching cat picture with count ' . $count . ' and size ' . $size);
// anti smart-ass device // anti smart-ass device
if ($count <= $this->hardLimit) if ($count > $this->hardLimit || $count <= 0)
{ {
Analog::error('CatAPI: Invalid arguments: Count of ' . $count . ' is over the hard limit of ' . $this->hardLimit); Analog::error('CatAPI: Invalid arguments: Count of ' . $count . ' is over the hard limit of ' . $this->hardLimit);
throw new Exception("Unacceptable quantity: " . $count . ". Please try again with no more than " . $this->hardLimit . " picture(s)."); throw new Exception("Unacceptable quantity: " . $count . ". Please try again with no more than " . $this->hardLimit . " picture(s).");