fixes for NewPipe version 0.28.0

This commit is contained in:
Julian Winkler
2025-08-31 11:10:40 +02:00
committed by Mis012
parent d52985a6df
commit e7318f0757
8 changed files with 30 additions and 12 deletions

View File

@@ -234,7 +234,7 @@ public class Intent implements Parcelable {
}
public boolean getBooleanExtra(String name, boolean defaultValue) {
return defaultValue;
return extras.getBoolean(name, defaultValue);
}
public Intent setAction(String action) {