Skip to content

Commit 423ac80

Browse files
committed
Merge branch 'main' into develop
2 parents bca9d21 + db8e489 commit 423ac80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/CSAF/ROLIE/Feed.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ sub add_entry {
109109

110110
my $integrity = $options->{integrity};
111111

112-
push @{$link}, {href => "$csaf_url.sha256", ref => 'hash'}
112+
push @{$link}, {href => "$csaf_url.sha256", rel => 'hash'}
113113
if (defined $integrity->{sha256} && $integrity->{sha256});
114114

115-
push @{$link}, {href => "$csaf_url.sha512", ref => 'hash'}
115+
push @{$link}, {href => "$csaf_url.sha512", rel => 'hash'}
116116
if (defined $integrity->{sha512} && $integrity->{sha512});
117117

118118
}
119119

120-
push @{$link}, {href => "$csaf_url.asc", ref => 'signature'}
120+
push @{$link}, {href => "$csaf_url.asc", rel => 'signature'}
121121
if (defined $options->{signature} && $options->{signature});
122122

123123
my $is_updated = 0;

0 commit comments

Comments
 (0)