From: Art Cancro Date: Thu, 2 Mar 2017 13:06:15 +0000 (-0500) Subject: Accept the 'content' tag OR the 'summary' tag for Atom feeds. X-Git-Tag: v939~624 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=4f145af746d739e0a6fe39fb7dfadddf49b182ee;hp=5e6146dbb2886deed584ae50d67f239963755479;p=citadel.git Accept the 'content' tag OR the 'summary' tag for Atom feeds. --- diff --git a/citadel/modules/rssclient/serv_rssclient.c b/citadel/modules/rssclient/serv_rssclient.c index 686dd7268..9be08531b 100644 --- a/citadel/modules/rssclient/serv_rssclient.c +++ b/citadel/modules/rssclient/serv_rssclient.c @@ -254,6 +254,7 @@ void rss_end_element(void *data, const char *el) else if ( (!strcasecmp(el, "description")) // message text (rss) || (!strcasecmp(el, "summary")) // message text (atom) + || (!strcasecmp(el, "content")) // message text (atom) ) { if (r->description != NULL) { free(r->description);