Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4392dbd authored by Narayan Kamath's avatar Narayan Kamath Committed by android-build-merger
Browse files

Merge "Fix broken time comparison." am: e9f6953d

am: 658c49b5

Change-Id: Icdfd0ce7357c36ebeb0a6a552be6944c42ad61a9
parents 1d385c12 658c49b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -180,7 +180,7 @@ static std::vector<DumpData>* GetDumpFds(const std::string& dir_path,
            continue;
            continue;
        }
        }


        if (limit_by_mtime && st.st_mtime >= thirty_minutes_ago) {
        if (limit_by_mtime && st.st_mtime < thirty_minutes_ago) {
            MYLOGI("Excluding stale dump file: %s\n", abs_path.c_str());
            MYLOGI("Excluding stale dump file: %s\n", abs_path.c_str());
            continue;
            continue;
        }
        }