reallysimple 0.4.15 → 0.4.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/reallysimple.js +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "reallysimple",
3
3
  "description": "A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.",
4
- "version": "0.4.15",
4
+ "version": "0.4.16",
5
5
  "author": "Dave Winer <dave@scripting.com>",
6
6
  "license": "MIT",
7
7
  "files": [
package/reallysimple.js CHANGED
@@ -1,4 +1,4 @@
1
- var myProductName = "reallysimple", myVersion = "0.4.15";
1
+ var myProductName = "reallysimple", myVersion = "0.4.16";
2
2
 
3
3
  exports.readFeed = readFeed;
4
4
  exports.convertFeedToOpml = convertFeedToOpml;
@@ -207,7 +207,7 @@ function convertFeed (oldFeed, whenstart) {
207
207
  });
208
208
  }
209
209
  }
210
- newItem.guid = getItemPermalink (item);
210
+ newItem.permalink = getItemPermalink (item); //7/14/22 by DW
211
211
  if (newItem.source !== undefined) { //5/17/22 by DW
212
212
  if (isEmptyObject (newItem.source)) {
213
213
  delete newItem.source;