不再备份和还原应用日志信息

This commit is contained in:
赵民勇 2022-08-09 16:14:39 +08:00
parent 099346b58b
commit c7a1945dc8
1 changed files with 2 additions and 0 deletions

View File

@ -410,9 +410,11 @@ void Utils::excludeSomeHomePath(QStringList &excludes)
QString home("/home/");
home += item;
excludes << home + "/.box";
excludes << home + "/.log";
QString dataHome("/data/home/");
dataHome += item;
excludes << dataHome + "/.box";
excludes << dataHome + "/.log";
}
}