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

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

Merge "Fix broken time comparison." am: e9f6953d am: 658c49b5

am: f4392dbd

Change-Id: I5635ee7dd701286027bd103b87accec40cf3d0ff
parents 2a4bf6d1 f4392dbd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ static std::vector<DumpData>* GetDumpFds(const std::string& dir_path,
            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());
            continue;
        }