mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Fix (another) LeanbackPlayerAdapter param name mismatch
I missed this when fixing `positionInMs` for Dackka ind2a3d8f6faThis time I manually verified that all the `@Override` methods have parameter names that match [the docs](https://developer.android.com/reference/androidx/leanback/media/PlayerAdapter). #minor-release PiperOrigin-RevId: 506017063 (cherry picked from commit736f090cce)
This commit is contained in:
parent
284bf97007
commit
4dfa7ca249
1 changed files with 2 additions and 2 deletions
|
|
@ -110,9 +110,9 @@ public final class LeanbackPlayerAdapter extends PlayerAdapter implements Runnab
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setProgressUpdatingEnabled(boolean enabled) {
|
||||
public void setProgressUpdatingEnabled(boolean enable) {
|
||||
handler.removeCallbacks(this);
|
||||
if (enabled) {
|
||||
if (enable) {
|
||||
handler.post(this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue