Skip to content

Commit

Permalink
Quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tehampson committed Jan 18, 2024
1 parent 8e26d1d commit d29d5b5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/CommandHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,10 @@ void CommandHandler::CreateBackupForResponseRollback()
{
return;
}
if (mInvokeResponseBuilder.GetInvokeResponses().GetError() != CHIP_NO_ERROR || mInvokeResponseBuilder.GetError() != CHIP_NO_ERROR)
{
return;
}
mInvokeResponseBuilder.Checkpoint(mBackupWriter);
mBackupState = mState;
mRollbackBackupValid = true;
Expand Down

0 comments on commit d29d5b5

Please sign in to comment.