Here is a solution for the problem :

In the rss.cpp, I just added a rtrim code before showing the title

std::string rss_item::title() const {
        std::string retval;
        if (title_.length()>0)
                retval = utils::convert_text(title_, nl_langinfo(CODESET), 
"utf-8");


        std::string space = "\t ";
        retval = retval.substr(retval.find_first_not_of (space ));
<<<
        return retval;
}

And this corrected the problem for me.

--
Sébastien



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to