We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91a7001 commit 5836667Copy full SHA for 5836667
src/Results/SettledResult.php
@@ -58,7 +58,7 @@ public function __construct($raw, LambdaFunction $function)
58
*/
59
public function isError()
60
{
61
- return $this->raw->get('FunctionError') !== '';
+ return $this->raw->hasKey('FunctionError') && $this->raw->get('FunctionError') !== '';
62
}
63
64
/**
0 commit comments