diff --git a/tasks/rss.js b/tasks/rss.js index becbac5..ac92576 100644 --- a/tasks/rss.js +++ b/tasks/rss.js @@ -45,7 +45,8 @@ module.exports = class RSS { this.memory.known.push(item.guid); const use = item[this.use].replace(/(<\/?[^>]+>)|\\n/g, ""); - const post = `${use} <${item.guid}>`; + const user = item.author.split("@")[0]; + const post = `${use} (posted by ${user}) <${item.guid}>`; const response = `[${this.alias}] ${post}`; this.channels.forEach((channel) => { this.client.say(channel, response);