Disable RSS-shorter link expander.
authorWilfried Goesgens <dothebart@citadel.org>
Tue, 20 Sep 2011 14:38:46 +0000 (14:38 +0000)
committerWilfried Goesgens <dothebart@citadel.org>
Tue, 20 Sep 2011 14:38:46 +0000 (14:38 +0000)
citadel/modules/rssclient/serv_rssclient.c

index c5b74eb61c7d22e91fc75c140182c06f3b75957c..b991b4df13b2c372e794d36fcd98378d3af3ffb5 100644 (file)
@@ -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));