-Fixed MediaSourceManager from inserting already inserted entry.

This commit is contained in:
John Zhen M 2017-10-12 22:29:54 -07:00 committed by John Zhen Mo
parent cc4e4a4f91
commit 0d3e0c201e
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ public class MediaSourceManager implements DeferredMediaSource.Callback {
* If the play queue index already exists, then the insert is ignored.
* */
private void insert(final int queueIndex, final DeferredMediaSource source) {
if (queueIndex < 0) return;
if (queueIndex < 0 || queueIndex < sources.getSize()) return;
sources.addMediaSource(queueIndex, source);
}