diff --git a/lib/Collection.php b/lib/Collection.php index 9c5e51cc..416a245b 100644 --- a/lib/Collection.php +++ b/lib/Collection.php @@ -13,9 +13,9 @@ class Collection{ public ?CollectionType $Type = null; protected ?string $_Url = null; - protected function GetUrl(): ?string{ + protected function GetUrl(): string{ if($this->_Url === null){ - $this->Url = '/collections/' . $this->UrlName; + $this->_Url = '/collections/' . $this->UrlName; } return $this->_Url;