Skip to content

Commit

Permalink
Fix channel adapter not using string resource
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed Apr 18, 2024
1 parent 17f1620 commit 9c06829
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ public void onResponse(Integer response) {
ArrayObjectAdapter channelAdapter = new ArrayObjectAdapter(new ChannelCardPresenter());
channelAdapter.addAll(0, TvManager.getAllChannels());
if (mChapterRow != null) mPopupRowAdapter.remove(mChapterRow);
mChapterRow = new ListRow(new HeaderItem("Channels"), channelAdapter);
mChapterRow = new ListRow(new HeaderItem(requireContext().getString(R.string.channels)), channelAdapter);
mPopupRowAdapter.add(mChapterRow);
}
});
Expand Down

0 comments on commit 9c06829

Please sign in to comment.