Increase update thread sleep time

This prevents wasting time in scheduling the thread
This commit is contained in:
smallmodel 2025-03-11 23:57:25 +01:00
parent 200bf3229c
commit 79af8a46d1
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -287,7 +287,7 @@ void UpdateChecker::RequestThread()
DoRequest();
}
std::this_thread::sleep_for(std::chrono::milliseconds(500));
std::this_thread::sleep_for(std::chrono::seconds(5));
}
}