Skip to content
Snippets Groups Projects
Commit a144310b authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

Merge branch 'malowe/main/reduce-codesmell' into 'main'

Fix resource link missing from RSS feed Seq list items

See merge request !54
parents 90286ad3 8e9dc29b
No related branches found
No related tags found
1 merge request!54Fix resource link missing from RSS feed Seq list items
Pipeline #52828 passed
......@@ -95,6 +95,7 @@ public class CveResource {
SyndEntry e = new SyndEntryImpl();
e.setTitle(cve.getId());
e.setLink(cve.getLiveLink());
e.setUri(cve.getLiveLink());
e.setPublishedDate(Date.valueOf(cve.getDatePublished()));
// only set description if we have a summary
if (cve.getSummary() != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment