Skip to content

Commit

Permalink
Fix unbundle leak (#1886)
Browse files Browse the repository at this point in the history
Ensure the unbundle reference is disposed when the JavaScript executor instance is disposed.
  • Loading branch information
matthargett authored and rozele committed Jul 10, 2018
1 parent 8cd28b8 commit 5d71fcd
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ public void Dispose()
{
JavaScriptContext.Current = JavaScriptContext.Invalid;
_runtime.Dispose();
_unbundle?.Dispose();
}

private void InitializeChakra()
Expand Down

0 comments on commit 5d71fcd

Please sign in to comment.