crashreporter: skip first possibly cut off line in log tail

This commit is contained in:
Vaxry 2024-01-20 09:16:27 +01:00
parent b86ed02d8a
commit f40e382fc6
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ void CrashReporter::createAndSaveCrash(int sig) {
finalCrashReport += "\n\nLog tail:\n";
finalCrashReport += Debug::rollingLog;
finalCrashReport += Debug::rollingLog.substr(Debug::rollingLog.find("\n") + 1);
const auto HOME = getenv("HOME");
const auto CACHE_HOME = getenv("XDG_CACHE_HOME");