From 72628669024f07289dfe7a08021e01317675877f Mon Sep 17 00:00:00 2001 From: cold-brewed Date: Thu, 1 Sep 2022 13:49:35 -0400 Subject: [PATCH] qt: Fix discord update timer to run at one second interval --- src/qt/qt_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_main.cpp b/src/qt/qt_main.cpp index de2fef1bd..6f471dc53 100644 --- a/src/qt/qt_main.cpp +++ b/src/qt/qt_main.cpp @@ -293,7 +293,7 @@ int main(int argc, char* argv[]) { QObject::connect(&discordupdate, &QTimer::timeout, &app, [] { discord_run_callbacks(); }); - discordupdate.start(0); + discordupdate.start(1000); } /* Initialize the rendering window, or fullscreen. */