| Index: components/offline_pages/background/request_picker.cc
|
| diff --git a/components/offline_pages/background/request_picker.cc b/components/offline_pages/background/request_picker.cc
|
| index c6ac59ebb38d5d2a8c1f4c029567cb260bd5aef3..d6014069e8cdf746b07abe4a5dbf34ae97839563 100644
|
| --- a/components/offline_pages/background/request_picker.cc
|
| +++ b/components/offline_pages/background/request_picker.cc
|
| @@ -111,7 +111,7 @@ bool RequestPicker::RequestConditionsSatisfied(const SavePageRequest& request) {
|
| // eligible to try again.
|
| // TODO(petewil): Instead, we should have code to remove the page from the
|
| // queue after the last retry.
|
| - if (request.attempt_count() >= policy_->GetMaxRetries())
|
| + if (request.attempt_count() > policy_->GetMaxTries())
|
| return false;
|
|
|
| // If the request is expired, do not consider it.
|
|
|