Bug 1570543 - Fix incorrect batch index after merging batches. r=gw

Differential Revision: https://phabricator.services.mozilla.com/D41166

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nicolas Silva 2019-08-09 03:50:47 +00:00
Родитель d7dc23922f
Коммит 01481c8d58
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -429,8 +429,9 @@ impl AlphaBatchContainer {
match batch_index {
Some(batch_index) => {
self.alpha_batches[batch_index + min_batch_index].merge(other_batch);
min_batch_index = batch_index;
let index = batch_index + min_batch_index;
self.alpha_batches[index].merge(other_batch);
min_batch_index = index;
}
None => {
self.alpha_batches.push(other_batch);