diff --git a/src/Tournament.php b/src/Tournament.php index 8d2414c..3e24b02 100644 --- a/src/Tournament.php +++ b/src/Tournament.php @@ -1325,7 +1325,10 @@ class Tournament */ public function getBinaryData(string $Key) { - return $this->BinaryData[$Key]; + if (isset($this->BinaryData[$Key])) { + return $this->BinaryData[$Key]; + } + return null; } /**