From 331d5b07c1f53c75344f8056812c526a77db5c9f Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 25 Feb 2023 18:51:20 -0500 Subject: [PATCH] Updated RSSPostRecord builder to include the guid --- utilities/recordHelper.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utilities/recordHelper.js b/utilities/recordHelper.js index 640c47f..4f172e8 100644 --- a/utilities/recordHelper.js +++ b/utilities/recordHelper.js @@ -63,10 +63,10 @@ exports.RSSPostRecord = class RSSPostRecord extends baseRSSRecord{ * @param {*} _title The title of the post * @param {*} _link The link to the post * @param {*} _category The category of the post - * @param {*} _rssSourceID The ID of the RSS source that created this post + * @param {*} _guid The ID of this post */ - constructor(_id, _title, _link, _category, _rssSourceID) { + constructor(_id, _title, _link, _category, _guid) { super(_id, _title, _link, _category); - this.source_id = _rssSourceID; + this.guid = _guid; } } \ No newline at end of file