forked from miguel456/luke-bot
Updated logic
This commit is contained in:
parent
b2ef7980e8
commit
f6c86b3b74
|
@ -44,7 +44,7 @@ class CatAPI {
|
|||
Analog::debug('CatAPI: Fetching cat picture with count ' . $count . ' and size ' . $size);
|
||||
|
||||
// anti smart-ass device
|
||||
if ($count > 0 && $count <= $this->hardLimit)
|
||||
if ($count <= $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).");
|
||||
|
|
Loading…
Reference in New Issue