Accept the 'content' tag OR the 'summary' tag for Atom feeds.
authorArt Cancro <ajc@citadel.org>
Thu, 2 Mar 2017 13:06:15 +0000 (08:06 -0500)
committerArt Cancro <ajc@citadel.org>
Thu, 2 Mar 2017 13:06:15 +0000 (08:06 -0500)
citadel/modules/rssclient/serv_rssclient.c

index 686dd7268cedffe0b25578ee304ea3403262d08b..9be08531bda2824f751953020e4d1a9653493e35 100644 (file)
@@ -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);