Don't serialize apps for the host backup
This takes a ton of time on macOS and most of the data is just a local cache anyway
This commit is contained in:
parent
aa74e6930b
commit
d2dc0aa1b1
3 changed files with 4 additions and 4 deletions
|
|
@ -273,7 +273,7 @@ void DelayedFlushThread::run() {
|
|||
int i = 0;
|
||||
for (const NvComputer* computer : m_ComputerManager->m_KnownHosts) {
|
||||
settings.setArrayIndex(i++);
|
||||
computer->serialize(settings);
|
||||
computer->serialize(settings, false);
|
||||
}
|
||||
}
|
||||
settings.endArray();
|
||||
|
|
@ -286,7 +286,7 @@ void DelayedFlushThread::run() {
|
|||
int i = 0;
|
||||
for (const NvComputer* computer : m_ComputerManager->m_KnownHosts) {
|
||||
settings.setArrayIndex(i++);
|
||||
computer->serialize(settings);
|
||||
computer->serialize(settings, true);
|
||||
}
|
||||
}
|
||||
settings.endArray();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue