| Index: components/offline_pages/background/save_page_request.cc
|
| diff --git a/components/offline_pages/background/save_page_request.cc b/components/offline_pages/background/save_page_request.cc
|
| index f17b7268f03bd0d4961da0fc79d4b29d4f9d7dbe..e1efccb2ff5ab7011d14ae21651d209f0137f796 100644
|
| --- a/components/offline_pages/background/save_page_request.cc
|
| +++ b/components/offline_pages/background/save_page_request.cc
|
| @@ -83,7 +83,8 @@ void SavePageRequest::MarkAttemptAborted() {
|
| // We intentinally do not increment the completed_attempt_count_, since this
|
| // was killed before it completed, so we could use the phone or browser for
|
| // other things.
|
| - state_ = RequestState::AVAILABLE;
|
| + if (state_ == RequestState::OFFLINING)
|
| + state_ = RequestState::AVAILABLE;
|
| }
|
|
|
| void SavePageRequest::MarkAttemptPaused() {
|
|
|