This commit is contained in:
Gunnar Skjold 2022-02-28 10:45:09 +01:00
parent c26073b2a3
commit e0e98f0ec1

View File

@ -97,7 +97,10 @@ bool AmsDataStorage::update(AmsData* data) {
}
}
if(data->getListType() < 3) return false;
if(data->getListType() < 3) {
debugger->printf("(AmsDataStorage) Not enough data in list type: %d\n", data->getListType());
return false;
}
bool ret = false;