diff --git a/MMDVMHost.cpp b/MMDVMHost.cpp index 3213959..8cbf318 100644 --- a/MMDVMHost.cpp +++ b/MMDVMHost.cpp @@ -612,7 +612,8 @@ int CMMDVMHost::run() m_pocsag = new CPOCSAGControl(m_pocsagNetwork, m_display); - pocsagTimer.start(); + if (m_pocsagNetwork != NULL) + pocsagTimer.start(); } bool remoteControlEnabled = m_conf.getRemoteControlEnabled(); diff --git a/Version.h b/Version.h index fe64411..101ca94 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20200527"; +const char* VERSION = "20200608"; #endif