mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix bug in Timeline.getRemovedAdGroupCount()
#minor-release PiperOrigin-RevId: 389174519
This commit is contained in:
parent
8fb1e5ce51
commit
bf462aca69
1 changed files with 1 additions and 1 deletions
|
|
@ -710,7 +710,7 @@ public abstract class Timeline implements Bundleable {
|
||||||
* 0} (inclusive) and {@code removedAdGroupCount} (exclusive) will be empty.
|
* 0} (inclusive) and {@code removedAdGroupCount} (exclusive) will be empty.
|
||||||
*/
|
*/
|
||||||
public int getRemovedAdGroupCount() {
|
public int getRemovedAdGroupCount() {
|
||||||
return adPlaybackState.adGroupCount;
|
return adPlaybackState.removedAdGroupCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue