do not send empty lists

此提交包含在:
Sven Czarnian
2021-11-21 08:54:22 +01:00
父節點 ce23f956ed
當前提交 b1b6b5c790

查看文件

@@ -470,9 +470,11 @@ void PlugIn::OnTimer(int counter) {
}
/* send the report */
auto sequence = Backend::instance().update(update);
if (true == inserted && nullptr != sequence)
this->DisplayUserMessage(PLUGIN_NAME, "ERROR", "Unable to send a new aircraft report update", true, true, true, true, true);
if (true == inserted) {
auto sequence = Backend::instance().update(update);
if (nullptr != sequence)
this->DisplayUserMessage(PLUGIN_NAME, "ERROR", "Unable to send a new aircraft report update", true, true, true, true, true);
}
airport.second.clear();
}