mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-10-29 06:17:38 +00:00
Use relatedItems instead of info.getRelatedStreams()
This commit is contained in:
@@ -83,7 +83,7 @@ public class RelatedVideosFragment extends BaseListInfoFragment<RelatedStreamInf
|
||||
autoplaySwitch.setChecked(autoplay);
|
||||
autoplaySwitch.setOnCheckedChangeListener((compoundButton, b) ->
|
||||
PreferenceManager.getDefaultSharedPreferences(getContext()).edit()
|
||||
.putBoolean(getString(R.string.auto_queue_key), b).apply());
|
||||
.putBoolean(getString(R.string.auto_queue_key), b).apply());
|
||||
return headerRootLayout;
|
||||
} else {
|
||||
return null;
|
||||
|
||||
@@ -168,7 +168,7 @@ public final class PlayerHelper {
|
||||
}
|
||||
|
||||
final List<StreamInfoItem> autoQueueItems = new ArrayList<>();
|
||||
for (final InfoItem item : info.getRelatedStreams()) {
|
||||
for (final InfoItem item : relatedItems) {
|
||||
if (item instanceof StreamInfoItem && !urls.contains(item.getUrl())) {
|
||||
autoQueueItems.add((StreamInfoItem) item);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user