From 6f2100d3cbfeec24fc897f9eb1974c155f8786a2 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Tue, 13 Jun 2023 09:51:43 -0400 Subject: [PATCH] statistics: don't display invalid data when first > last. --- oscar/statistics.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index 7833dded..4f7f8591 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -1331,6 +1331,9 @@ QString Statistics::GenerateCPAPUsage() } else { // STAT_MODE_RANGE first = p_profile->general->statReportRangeStart(); last = p_profile->general->statReportRangeEnd(); + if (first > last) { + first=last; + } periods.push_back(Period(first,last,first.toString(MedDateFormat)+" - "+last.toString(MedDateFormat))); }