mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-21 22:17:41 +01:00
Tournament::getbinarydata returning null
This commit is contained in:
parent
c61876c87e
commit
ae8121959e
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user