Feature request: display RSS post author in android app

Many blogs have multiple authors, but the NewsBlur android app does not display post authors when displaying the article. It would be nice to have a byline on posts when reading them so I know who wrote what. (Specifically, I don’t see post authors for http://www.esquire.com/rss/news-politics.xml)

that’s up to esquire to provide. for instance, the latest article on that feed is:

<item>
   <title>The President Attacked a Widow at a Rally Because His Offenses Are Not Just Against the Constitution</title>
   <link>https://www.esquire.com/news-politics/a30281793/trump-john-dingell-hell-debbie-dingell-impeachment/</link>
   <guid>http://www.esquire.com/news-politics/a30281793/trump-john-dingell-hell-debbie-dingell-impeachment/</guid>
   <description><![CDATA[<p>Rep. Debbie Dingell's response to Trump's suggestion her husband is in Hell was heartbreaking.</p>]]></description>
   <media:content url="https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/trumpo2-1576768903.jpg?resize=980:*" width="980">
    <media:credit>Scott Olson</media:credit>
    <media:copyright>Getty Images</media:copyright>
   </media:content>
   <category>News</category>
   <pubDate>Thu, 19 Dec 2019 15:50:00 +0000</pubDate>
  </item>

they provided a credit and copyright for the image they included in the feed, but they didn’t include a creator tag for the text itself. compare this item from nyt:

<item>
      <title>Trump Impeached for Abuse of Power and Obstruction of Congress</title>
      <link>https://www.nytimes.com/2019/12/18/us/politics/trump-impeached.html?emc=rss&amp;partner=rss</link>
      <guid isPermaLink="true">https://www.nytimes.com/2019/12/18/us/politics/trump-impeached.html</guid>
      <atom:link href="https://www.nytimes.com/2019/12/18/us/politics/trump-impeached.html?emc=rss&amp;partner=rss" rel="standout"></atom:link>
      <description>Voting nearly along party lines, the House approved two articles of impeachment against President Trump, making him the third president in history to face removal by the Senate.</description>
      <dc:creator>Nicholas Fandos and Michael D. Shear</dc:creator>
      <pubDate>Thu, 19 Dec 2019 15:45:06 +0000</pubDate>
      <category domain="http://www.nytimes.com/namespaces/keywords/nyt_per">Trump, Donald J</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/des">Impeachment</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/nyt_org">House of Representatives</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/nyt_per">Pelosi, Nancy</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/nyt_org">Democratic Party</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/nyt_org">Republican Party</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/des">United States Politics and Government</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/des">Trump-Ukraine Whistle-Blower Complaint and Impeachment Inquiry</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/des">Presidential Election of 2020</category>
      <category domain="http://www.nytimes.com/namespaces/keywords/des">Russian Interference in 2016 US Elections and Ties to Trump Associates</category>
      <media:content height="151" medium="image" url="https://static01.nyt.com/images/2020/01/18/us/18impeach-image-promo2/merlin_166159710_a6428c88-fac1-4ac5-946f-1b3c0ce2e778-moth.jpg" width="151"></media:content>
      <media:credit>Erin Schaff/The New York Times</media:credit>
    </item>

where the authors are linked within <dc:creator>.

ahh, ok, thanks!