Fb2RSS

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

commit 0bc948e81705fcc8d02516417100e89b6b3b373c
parent 26bf5e68f8f4cad7a0a964b3d628c0df44e349d5
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Sat, 21 Jul 2018 12:50:31 +0200

Do explicite string concatenation

Diffstat:
fbstream.d | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fbstream.d b/fbstream.d @@ -150,7 +150,7 @@ class FBStream : DRSS!(Post){ root=readDocument(document); if(!captchaSolved(document)){ throw new CaptchaException("Captcha has not been solved yet. " - "Please run the ./captcha utility"); + ~"Please run the ./captcha utility"); } arr=root.parseXPath(`//title`); headers[1][1]=arr[0].getCData().idup;