Fix: do not send a message to ISMAS about a check of the ISMAS

trigger (WAIT-button). For an automatic update this meant that
two messages have been visible in ISMAS which confused many users.
This commit is contained in:
Gerhard Hoffmann 2024-05-17 12:22:38 +02:00
parent 8b2e2d2086
commit db82f2af0d

View File

@ -325,7 +325,7 @@ void Worker::privateUpdate() {
QStringList lst = m_ismasTriggerStatusMessage;
// trigger message to ISMAS and CONSOLE
ISMAS(lst) << (CONSOLE(lst) << (m_lastFailedUpdateStep = UPDATE_STEP::CHECK_ISMAS_TRIGGER_SUCCESS));
CONSOLE(lst) << (m_lastFailedUpdateStep = UPDATE_STEP::CHECK_ISMAS_TRIGGER_SUCCESS);
// overwrite m_lastFailedUpdateStep
m_lastFailedUpdateStep = UPDATE_STEP::NONE;
return;