Skip to content

Commit

Permalink
#190 - Fix crash when more than one collection result is found, this …
Browse files Browse the repository at this point in the history
…was due to missing method overload
  • Loading branch information
DineshSolanki committed Feb 14, 2024
1 parent 1920e54 commit e08d272
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions FoliCon/Modules/TMDB/TMDB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ public static ObservableCollection<ListItem> ExtractCollectionDetailsIntoListIte
{
return TmdbDataTransformer.ExtractCollectionDetailsIntoListItem(result);
}

public static ObservableCollection<ListItem> ExtractCollectionDetailsIntoListItem(SearchContainer<SearchCollection> result)
{
return TmdbDataTransformer.ExtractCollectionDetailsIntoListItem(result);
}

public static ObservableCollection<ListItem> ExtractMoviesDetailsIntoListItem(
dynamic result)
Expand Down

0 comments on commit e08d272

Please sign in to comment.