Skip to content

Commit

Permalink
issue-2732: correct build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vladstepanyuk committed Jan 15, 2025
1 parent cd36187 commit 01f1c8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void TChangeAgentStateActor::ReplyAndDie(
const TActorContext& ctx,
NProto::TError error)
{
if (!HasError(error.GetCode())) {
if (!HasError(error)) {
Notify(ctx, "Operation successfully completed", EAlertLevel::SUCCESS);
} else {
Notify(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void TChangeDeviceStateActor::ReplyAndDie(
const TActorContext& ctx,
NProto::TError error)
{
if (!HasError(error.GetCode())) {
if (!HasError(error)) {
Notify(ctx, "Operation successfully completed", EAlertLevel::SUCCESS);
} else {
Notify(
Expand Down

0 comments on commit 01f1c8f

Please sign in to comment.