Fix Typos

This commit is contained in:
ricoberger
2023-09-09 00:09:36 +02:00
parent 4a8776ee31
commit 9deba8fed5
2 changed files with 5 additions and 2 deletions

View File

@@ -99,7 +99,6 @@ Route onGenerateRoute(RouteSettings settings) {
/// The [FeedDeckApp] is the root widget of the app. The widget is used to
/// initialize some of our providers via the [MultiProvider] widget and to set
/// the theme for the app.
class FeedDeckApp extends StatelessWidget {
const FeedDeckApp({super.key});

View File

@@ -40,7 +40,11 @@ export const getPodcastFeed = async (
method: "get",
}, 5000);
const xml = await response.text();
log("debug", "Podcast Response", { status: response.status, xml: xml });
log("debug", "Add source", {
sourceType: "podcast",
requestUrl: source.options.podcast,
responseStatus: response.status,
});
const feed = await parseFeed(xml);
if (!feed.title.value) {