Ensure not nullable.
jdarwood007

jdarwood007 commited on 2023-08-27 14:38:16
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -504,6 +504,6 @@ class SFSA
504 504
 		else
505 505
 			// Parse all the responses out.
506 506
 			foreach ($this->context['sfs_checks'] as $key => &$res)
507
-				$res[0] += $response[$key][0];
507
+				$res[0] += $response[$key][0] ?? [];
508 508
 	}
509 509
 }
510 510
\ No newline at end of file
511 511