Skip to content

Commit

Permalink
fix: the original JSHandle never being assigned properly
Browse files Browse the repository at this point in the history
  • Loading branch information
LordMidas committed Apr 17, 2024
1 parent 15ab9c5 commit d4c8bba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
__original();
this.m.MSU_JSHandle <- {
__JSHandle = this.m.JSHandle,
__JSHandle = null,
function asyncCall( _funcName, ... )
{
if (_funcName == "updateCostsPreview")
Expand Down Expand Up @@ -52,6 +52,7 @@
}
}

this.m.MSU_JSHandle.__JSHandle = this.m.JSHandle;
this.m.JSHandle = this.m.MSU_JSHandle;
__original(_costsPreview);
this.m.JSHandle = this.m.MSU_JSHandle.__JSHandle;
Expand Down

0 comments on commit d4c8bba

Please sign in to comment.