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

Reference url can always fallback to the link itself
pull/34358/head
Julien Veyssier 2 years ago committed by GitHub
commit 4844ca619c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

@ -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;
}
/**

Loading…
Cancel
Save