mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-06-13 13:47:42 +02:00
fix(YouTube - Change live ring click action): Channel does not open when the live ring of Shorts live stream is clicked
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
package com.facebook.litho;
|
||||
|
||||
import android.content.Context;
|
||||
import android.view.ViewGroup;
|
||||
|
||||
/**
|
||||
* "CompileOnly" class
|
||||
* <p>
|
||||
* This class will not be included and "replaced" by the real package's class.
|
||||
*/
|
||||
public class ComponentHost extends ViewGroup {
|
||||
public ComponentHost(Context context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onLayout(boolean changed, int l, int t, int r, int b) {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user