git ssb

9+

cel / ssb-viewer



Commit 07ff4c602e229a458d6210ac0c19dc2b699b740f

rss: put feed author in author field

cel committed on 6/11/2017, 12:32:13 AM
Parent: b99fb41a81ed0e6a2d0e1f32c5fae9ce6cf5d9de

Files changed

render.jschanged
render.jsView
@@ -361,9 +361,10 @@
361361 }
362362
363363 return (
364364 '<item>' +
365- '<title>' + escape(msg.author.name + ' | ' + (c.type || 'private')) + '</title>' +
365 + '<title>' + escape(c.type || 'private') + '</title>' +
366 + '<author>' + escape(msg.author.name) + '</author>' +
366367 '<description><![CDATA[' + content + ']]></description>' +
367368 '<link>' + opts.base + escape(name) + '</link>' +
368369 '<pubDate>' + new Date(msg.value.timestamp).toUTCString() + '</pubDate>' +
369370 '<guid>' + msg.key + '</guid>' +

Built with git-ssb-web