Bug#526612: Acknowledgement (newsbeuter: Newsbeuter show empty title)

2009-05-31 Thread Nico Golde
Hi,
* Sébastien Dailly  [2009-05-31 14:36]:
> Here is a solution for the problem :
[...] 
This problem is already fixed in upstream git, it will be 
fixed in the next upload.

Cheers
Nico
-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpNSfUhOEPBr.pgp
Description: PGP signature


Bug#526612: Acknowledgement (newsbeuter: Newsbeuter show empty title)

2009-05-31 Thread Sébastien Dailly

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