Socket
Socket
Sign inDemoInstall

feedparser

Package Overview
Dependencies
4
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

5

History.md
1.1.2 / 2015-06-02
==================
* Be more careful about assigning item.link from atom:link elements
1.1.1 / 2015-05-28

@@ -3,0 +8,0 @@ ==================

4

main.js

@@ -790,3 +790,3 @@ /**********************************************************************

if (link['@']['rel'] == 'canonical') item.origlink = link['@']['href'];
if (link['@']['rel'] == 'alternate') item.link = link['@']['href'];
if (link['@']['rel'] == 'alternate' && !item.link) item.link = link['@']['href'];
if (link['@']['rel'] == 'self' && !item.link) item.link = link['@']['href'];

@@ -814,3 +814,3 @@ if (link['@']['rel'] == 'replies') item.comments = link['@']['href'];

if (el['@']['rel'] == 'canonical') item.origlink = el['@']['href'];
if (el['@']['rel'] == 'alternate') item.link = el['@']['href'];
if (el['@']['rel'] == 'alternate' && !item.link) item.link = el['@']['href'];
if (el['@']['rel'] == 'self' && !item.link) item.link = el['@']['href'];

@@ -817,0 +817,0 @@ if (el['@']['rel'] == 'replies') item.comments = el['@']['href'];

@@ -5,3 +5,3 @@ {

"description": "Robust RSS Atom and RDF feed parsing using sax js",
"version": "1.1.1",
"version": "1.1.2",
"keywords": [

@@ -8,0 +8,0 @@ "rss",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc