fixed .yun, closes #332

This commit is contained in:
Kwoth
2022-05-06 04:31:44 +02:00
parent 5ed005211e
commit c73c2da6a4
2 changed files with 9 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ public class FeedsService : INService
if (kvp.Value.Count == 0)
continue;
var rssUrl = kvp.Key;
var rssUrl = kvp.Value.First().Url;
try
{
var feed = await FeedReader.ReadAsync(rssUrl);
@@ -143,8 +143,9 @@ public class FeedsService : INService
allSendTasks.Add(feedSendTasks.WhenAll());
}
}
catch
catch (Exception ex)
{
Log.Warning("An error occured while getting rss stream: {Message}", ex.Message);
}
}