1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-06-26 07:02:55 +00:00

Use GroupName for the Settings Text.

The Tabname displays the default Feed title.
This commit is contained in:
Diana Victoria Furrer 2025-05-31 14:11:26 +02:00
parent 712724211c
commit 205d18f4c4

View File

@ -412,7 +412,7 @@ public class ChooseTabsFragment extends Fragment {
return serviceName + "/" + tab.getTabName(requireContext());
case FEEDGROUP:
return getString(R.string.feed_groups_header_title)
+ "/" + tab.getTabName(requireContext());
+ "/" + ((Tab.FeedGroupTab) tab).getFeedGroupName();
default:
return tab.getTabName(requireContext());
}