nasa8x / rss-to-json

RSS and Atom feed generator for Node.js
https://morioh.com/@5df445b0103f3007600e1a57
174 stars 77 forks source link

Date isn't right! #46

Open ryankert01 opened 2 years ago

ryankert01 commented 2 years ago
const rs = await parse("https://blog.ryankert.cc/atom.xml");
    fs.writeFile("./assests/test.json", JSON.stringify(rs), err => {
      if(err) {
          console.log(err);                
      }
  }) 

It returns 3 items (post), but the Date of the three objects is the same, which is definitely wrong in its rss feed.

"items": [
    {
      "published": 1661450424213,
      "created": 1661362853489,
      ...
    },
    {
      "published": 1661450424213,
      "created": 1661362853489,
      ...
    },
    {
      "published": 1661450424213,
      "created": 1661362853489,
      ...
    }
]