Skip to content

Commit 205d18f

Browse files
committed
Use GroupName for the Settings Text.
The Tabname displays the default Feed title.
1 parent 7127242 commit 205d18f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/org/schabi/newpipe/settings/tabs/ChooseTabsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ private String getTabName(@NonNull final Tab.Type type, @NonNull final Tab tab)
412412
return serviceName + "/" + tab.getTabName(requireContext());
413413
case FEEDGROUP:
414414
return getString(R.string.feed_groups_header_title)
415-
+ "/" + tab.getTabName(requireContext());
415+
+ "/" + ((Tab.FeedGroupTab) tab).getFeedGroupName();
416416
default:
417417
return tab.getTabName(requireContext());
418418
}

0 commit comments

Comments
 (0)