Skip to content

Commit

Permalink
Add missing provider
Browse files Browse the repository at this point in the history
  • Loading branch information
svenreimers committed Sep 30, 2023
1 parent f7938a3 commit d259852
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,14 @@ public Collection<Class<? extends DataProvider>> getRequiredDataProviders(final
case TODAY:
return Arrays.asList(
TopTalksTodayDataProvider.class,
SpeakerImageProvider.class);
SpeakerImageProvider.class,
TrackImageDataProvider.class);

case WEEK:
return Arrays.asList(
TopTalksWeekDataProvider.class,
SpeakerImageProvider.class);
SpeakerImageProvider.class,
TrackImageDataProvider.class);

default:
throw new IllegalArgumentException("TopVotedType " + topVotedType + " is not supported");
Expand Down

0 comments on commit d259852

Please sign in to comment.