Skip to content

Commit

Permalink
Merge pull request #1498 from nextcloud/backport/1443/stable0.8
Browse files Browse the repository at this point in the history
[stable0.8] fix: use actual providerId in link rows
  • Loading branch information
enjeck authored Dec 11, 2024
2 parents cf9dbf0 + 7d6a533 commit d215aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/ColumnTypes/TextLinkBusiness.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function parseValue($value, ?Column $column = null): string {
return json_encode(json_encode([
'title' => $data['title'] ?? $data['resourceUrl'],
'value' => $data['resourceUrl'],
'providerId' => 'url',
'providerId' => $data['providerId'] ?? 'url',
]));
}
// at least title and resUrl have to be set
Expand Down

0 comments on commit d215aea

Please sign in to comment.