Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
yunhanw-google committed Jun 28, 2024
1 parent 902accb commit a86ed6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Status ICDManagementServer::RegisterClient(CommandHandler * commandObj, const Co
FabricIndex fabricIndex = commandObj->GetAccessingFabricIndex();
NodeId nodeId = commandData.checkInNodeID;
uint64_t monitoredSubject = commandData.monitoredSubject;
Optional<ClientTypeEnum> clientType = commandData.clientType;
Optional<ClientTypeEnum> clientType = Optional<ClientTypeEnum>(commandData.clientType);
ByteSpan key = commandData.key;
Optional<ByteSpan> verificationKey = commandData.verificationKey;
bool isClientAdmin = false;
Expand Down

0 comments on commit a86ed6d

Please sign in to comment.