From 4a8abab15d6662f2bca504e496013a42d7a65efd Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Tue, 20 Sep 2011 14:38:46 +0000 Subject: [PATCH] Disable RSS-shorter link expander. --- citadel/modules/rssclient/serv_rssclient.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/citadel/modules/rssclient/serv_rssclient.c b/citadel/modules/rssclient/serv_rssclient.c index c5b74eb61..b991b4df1 100644 --- a/citadel/modules/rssclient/serv_rssclient.c +++ b/citadel/modules/rssclient/serv_rssclient.c @@ -688,7 +688,10 @@ void rss_save_item(rss_item *ri) } if (ri->link == NULL) ri->link = NewStrBufPlain(HKEY("")); +#ifdef EXPERIMENTAL_SHORTER_URLS +/* its rather hard to implement this libevent compatible, so we don't ship it. */ ExpandShortUrls(ri->description); +#endif msglen += 1024 + StrLength(ri->link) + StrLength(ri->description) ; Message = NewStrBufPlain(NULL, StrLength(ri->description)); -- 2.30.2