wbernest / mattermost-plugin-rssfeed

Mattermost RSSFeed plugin. Allows users to subscribe to an rss feed and allow for updates to the feed to be posted in a channel.
Apache License 2.0
69 stars 40 forks source link

Only showing post links and not title or summary #32

Open bbodenmiller opened 4 years ago

bbodenmiller commented 4 years ago

The following RSS is only posting the links rather than the title and summary.

<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>example feed</title>
  <link rel="alternate" href="<feed url>" />
  <link rel="self" href="<feed url>" />
  <subtitle>Latest questions asked</subtitle>
  <id>some stuff</id>
  <updated>2020-04-17T06:14:05Z</updated>
  <dc:date>2020-04-17T06:14:05Z</dc:date>
  <entry>
    <title type="html">My post title</title>
    <link rel="alternate" href="https://link-to-post" />
    <author>
      <name>Me</name>
    </author>
    <id>some stuff</id>
    <updated>2020-04-16T17:22:55Z</updated>
    <published>2020-04-16T17:22:55Z</published>
    <summary type="html">Post summary</summary>
    <dc:creator>Me</dc:creator>
    <dc:date>2020-04-16T17:22:55Z</dc:date>
  </entry>
</feed>
patryk-s commented 3 years ago

I have the same problem with this feed: https://www.hetzner-status.de/en.atom

These feeds only have a summary field and not the expected content, but that should be valid according to the Atom RFC

patryk-s commented 3 years ago

I think this will be fixed by #40

wjurij commented 3 years ago

Having the same problem, which I reported in #49, I suspect that the issue could not have been fixed yet