fix(YouTube - Hook download actions, Overlay buttons): Sometimes the AlertDialog does not show

This commit is contained in:
inotia00
2025-03-26 15:02:02 +09:00
parent df41f035b6
commit cf90f7b94e
3 changed files with 43 additions and 0 deletions

View File

@ -8,6 +8,8 @@ import android.widget.ScrollView;
import androidx.annotation.GuardedBy;
import androidx.annotation.NonNull;
import com.google.android.libraries.youtube.rendering.ui.pivotbar.PivotBar;
import org.apache.commons.collections4.BidiMap;
import org.apache.commons.collections4.bidimap.DualHashBidiMap;
import org.apache.commons.lang3.BooleanUtils;
@ -125,6 +127,15 @@ public class PlaylistPatch extends VideoUtils {
}
}
/**
* Injection point.
*/
public static void setPivotBar(PivotBar view) {
if (QUEUE_MANAGER) {
mContext = view.getContext();
}
}
/**
* Injection point.
*/