Merge pull request #34357 from nextcloud/backport/34353/stable25

[stable25] Reference url can always fallback to the link itself
This commit is contained in:
blizzz 2022-10-03 11:15:39 +02:00 committed by GitHub
commit eafcc4e3a1
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;
}
/**