Skip to content

Commit 90c2417

Browse files
committed
add "value" property to links
1 parent 8d594a9 commit 90c2417

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/registrars.pl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,9 @@
101101
if ($rar->{'url'}) {
102102
push(@{$data->{'links'}}, {
103103
'title' => "Registrar's Website",
104-
'rel' => 'related',
105-
'href' => $rar->{'url'}
104+
'rel' => 'related',
105+
'value' => $rar->{'url'},
106+
'href' => $rar->{'url'},
106107
});
107108
}
108109

@@ -119,6 +120,7 @@
119120
push(@{$data->{'links'}}, {
120121
'title' => 'About RDAP',
121122
'rel' => 'related',
123+
'value' => 'https://about.rdap.org',
122124
'href' => 'https://about.rdap.org',
123125
});
124126

0 commit comments

Comments
 (0)