Fb2RSS

A Facebook to RSS conversion tool
git clone git://xatko.vsos.ethz.ch/Fb2RSS.git
Log | Files | Refs | Submodules

commit 9de7ea770b90acae33b734b7c00695f8837f838c
parent 6c89da2f5829ab29c05c57f289a79836032f6194
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Wed,  1 Jul 2015 21:44:57 +0200

Actually add the link to the header.

Previously it was only used as the id...

Diffstat:
Fb2RSS.d | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/Fb2RSS.d b/Fb2RSS.d @@ -257,6 +257,7 @@ class FBStream : RandomFiniteAssignable!(Post){ rss.setAttribute("xmlns","http://www.w3.org/2005/Atom"); rss.addChild(new XmlNode("id").addCData(url)); rss.addChild(new XmlNode("title").addCData(title)); + rss.addChild(new XmlNode("link").setAttribute("href",url)); return rss; }