Skip to content

Commit

Permalink
[fix] 修正OnDelete无限递归导致进程崩溃
Browse files Browse the repository at this point in the history
  • Loading branch information
nnhy committed Oct 31, 2023
1 parent cf7e3e9 commit 8b83229
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected override Int32 OnUpdate(AppDeployNode entity)

protected override Int32 OnDelete(AppDeployNode entity)
{
var rs = OnDelete(entity);
var rs = base.OnDelete(entity);
entity.App?.Fix();
return rs;
}
Expand Down

0 comments on commit 8b83229

Please sign in to comment.