TT-RSS not outputing in recognizable format to Deluge

Hello all!

First let me thank you for a very nice app.

I am having trouble importing via TT-RSS a RSS stream into deluge.

I have tried another app - jackett - and it generates the rss feed normally and the deluge rss plugin uses it perfectly.

However if i run the same rss via tt-rss then export it as described in the documentation i get different results, and i think that this different results are the reason that deluge yasrss2 does not pick up the rss as a valid rss stream:

For example, the first lines of the output if i invoke the url via browser:

Via ttrss:

<feed xmlns="http://www.w3.org/2005/Atom">
<title>site</title>
<generator uri="http://tt-rss.org/">Tiny Tiny RSS/21.05-92c78be</generator>
<updated>2020-06-01T09:04:00+00:00</updated>
<id>http://yarr.net.xpto/public.php?op=rss&id=9&key=cf6oij60b60d15319f7</id>
<link href="http://ttrss.net.xpto/public.php?op=rss&id=9&key=cf6oij60b60d15319f7" rel="self"/>
<link href="http://ttrssnet.xpto" rel="alternate"/>

Via jackett:

<?xml version="1.0" encoding="UTF-8"?>
<rss version="1.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:torznab="http://torznab.com/schemas/2015/feed">
  <channel>
    <atom:link href="http://jackett.net.xpto:9117/" rel="self" type="application/rss+xml" />
    <title>site</title>
    <language>en-us</language>
    <category>search</category>

If i check another RSS feed, it starts also with rss version.

<rss version="2.0">
<channel>
<title>SITE</title>
<description>SITE rss feed direct download</description>
<link>https://site.com</link>
<lastBuildDate>Tue, 01 Jun 2021 13:02:53 CEST</lastBuildDate>
<copyright>(c) 2021 SITE</copyright>
<item>
</item>

tt-rss version (including git commit id): Tiny Tiny RSS v21.05-92c78be

Platform (i.e. Linux distro, PHP, PostgreSQL, etc) versions:

Linux, Centos7, Python 3.7, MariaDB.

Can you help me? Am i missing some plugin?
Thanks!!

tt-rss outputs Atom feeds. if deluge can’t deal with them, you can change the template (templates/generated_feed.txt or something like that) to generate RSS.

Thanks, but i think that ttrs is already outputting in atom:

<feed xmlns="http://www.w3.org/2005/Atom">

I’ll look inside that template. Thanks a lot.