From e08d2721128dfc27a69ff82118174aee08b351aa Mon Sep 17 00:00:00 2001 From: Dinesh Solanki <15937452+dineshsolanki@users.noreply.github.com> Date: Wed, 14 Feb 2024 10:34:49 +0530 Subject: [PATCH] #190 - Fix crash when more than one collection result is found, this was due to missing method overload --- FoliCon/Modules/TMDB/TMDB.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/FoliCon/Modules/TMDB/TMDB.cs b/FoliCon/Modules/TMDB/TMDB.cs index f1ac5a0..97fef12 100644 --- a/FoliCon/Modules/TMDB/TMDB.cs +++ b/FoliCon/Modules/TMDB/TMDB.cs @@ -58,6 +58,11 @@ public static ObservableCollection ExtractCollectionDetailsIntoListIte { return TmdbDataTransformer.ExtractCollectionDetailsIntoListItem(result); } + + public static ObservableCollection ExtractCollectionDetailsIntoListItem(SearchContainer result) + { + return TmdbDataTransformer.ExtractCollectionDetailsIntoListItem(result); + } public static ObservableCollection ExtractMoviesDetailsIntoListItem( dynamic result)