From 9deba8fed58d44fe099ec93f774fe754530984ad Mon Sep 17 00:00:00 2001 From: ricoberger Date: Sat, 9 Sep 2023 00:09:36 +0200 Subject: [PATCH] Fix Typos --- app/lib/main.dart | 1 - supabase/functions/_shared/feed/podcast.ts | 6 +++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/app/lib/main.dart b/app/lib/main.dart index 03cb1a1..8552a09 100644 --- a/app/lib/main.dart +++ b/app/lib/main.dart @@ -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}); diff --git a/supabase/functions/_shared/feed/podcast.ts b/supabase/functions/_shared/feed/podcast.ts index 61557c7..aff9cb2 100644 --- a/supabase/functions/_shared/feed/podcast.ts +++ b/supabase/functions/_shared/feed/podcast.ts @@ -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) {