mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 11:55:40 +01:00
Added "0x" before key id in openpgp url to make search on key server happy.
This commit is contained in:
parent
bd8846baa6
commit
048c0dce89
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ func (t *tlp) UnmarshalText(text []byte) error {
|
|||
}
|
||||
|
||||
func (cfg *config) GetOpenPGPURL(key string) string {
|
||||
return strings.ReplaceAll(cfg.OpenPGPURL, "${KEY}", key)
|
||||
return strings.ReplaceAll(cfg.OpenPGPURL, "${KEY}", "0x"+key)
|
||||
}
|
||||
|
||||
func (cfg *config) modelTLPs() []csaf.TLPLabel {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue