Browse Source

Disable app update checking until 2.0.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
1ebd23d20a
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/library.cpp

+ 4
- 4
src/library.cpp View File

@@ -40,10 +40,10 @@ static void checkUpdatesLoop() {

void init() {
if (settings::autoCheckUpdates && !settings::devMode) {
std::thread t([&]() {
checkAppUpdate();
});
t.detach();
// std::thread t([&]() {
// checkAppUpdate();
// });
// t.detach();

std::thread t2([&] {
checkUpdatesLoop();


Loading…
Cancel
Save