|
@@ -109,7 +109,7 @@ CrashReporterCrashpad::GetUploadedReports(const base::FilePath& crashes_dir) {
|
|
|
|
|
|
auto sort_by_time = [](const UploadReportResult& a,
|
|
|
const UploadReportResult& b) {
|
|
|
- return a.first >= b.first;
|
|
|
+ return a.first > b.first;
|
|
|
};
|
|
|
std::sort(uploaded_reports.begin(), uploaded_reports.end(), sort_by_time);
|
|
|
return uploaded_reports;
|