diff --git a/src/plugin.cpp b/src/plugin.cpp index dd8ba1f8..8e225bf3 100644 --- a/src/plugin.cpp +++ b/src/plugin.cpp @@ -278,10 +278,12 @@ void init() { } // Sync in a detached thread - std::thread t([] { - queryUpdates(); - }); - t.detach(); + if (!settings::devMode) { + std::thread t([] { + queryUpdates(); + }); + t.detach(); + } } void destroy() {