add missing call to perform HK op

This commit is contained in:
Robin Müller 2023-11-15 11:39:04 +01:00
parent 7673d8b396
commit 8d7bb51d44
Signed by: muellerr
GPG Key ID: A649FB78196E3849
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ FreshDeviceHandlerBase::~FreshDeviceHandlerBase() {
ReturnValue_t FreshDeviceHandlerBase::performOperation(uint8_t opCode) {
handleQueue();
performDeviceOperation(opCode);
poolManager.performHkOperation();
return returnvalue::OK;
}