From 0cf83b19eedb4624e3536118b9105226ed38baac Mon Sep 17 00:00:00 2001 From: John Maguire Date: Fri, 12 Feb 2016 12:07:05 +0000 Subject: [PATCH] Eagerly initialise TagReaderClient --- src/core/application.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/application.cpp b/src/core/application.cpp index ca8d90e77..72ac2ff26 100644 --- a/src/core/application.cpp +++ b/src/core/application.cpp @@ -118,6 +118,9 @@ Application::Application(QObject* parent) // crash when a client connects before the manager is initialized! network_remote_helper_.get(); library_->Init(); + + // TODO(John Maguire): Make this not a weird singleton. + tag_reader_client_.get(); } Application::~Application() {