Minor clean up in JsonParser.

This commit is contained in:
2026-02-03 11:55:43 +01:00
parent 7ae10e6ed7
commit b6c49dda20
3 changed files with 8 additions and 12 deletions

View File

@ -162,7 +162,7 @@ void GenericCore::onSendItemTriggered(const QByteArray& jsonData) {
void GenericCore::onItemsFetched(const QByteArray jsonData) {
emit displayStatusMessage("New items fetched.");
// TODO ? check compability of JSON structure beforehand?
// NEXT check if item already exists ? ;
// NEXT check if item already exists and apply changes (UUID,...) ? ;
m_mainModel->appendItems(jsonData);
}