Merge pull request #34353 from nextcloud/fix/noid/reference-url-fallback

Reference url can always fallback to the link itself
This commit is contained in:
Julien Veyssier 2022-10-01 00:43:23 +02:00 committed by GitHub
commit 4844ca619c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ interface IReference extends JsonSerializable {
/**
* @since 25.0.0
*/
public function getUrl(): ?string;
public function getUrl(): string;
/**
* Set the reference specific rich object representation

View File

@ -149,8 +149,8 @@ class Reference implements IReference {
* @inheritdoc
* @since 25.0.0
*/
public function getUrl(): ?string {
return $this->url;
public function getUrl(): string {
return $this->url ?? $this->reference;
}
/**